ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

3,416 results

NeetCode
N-Queens - Backtracking - Leetcode 51 - Python

https://neetcode.io/ - A better way to prepare for Coding Interviews Twitter: https://twitter.com/neetcode1 Discord: ...

17:51
N-Queens - Backtracking - Leetcode 51 - Python

247,337 views

4 years ago

Bug Ninza
Python program to implement n-queens problem using backtracking | Python Tutorials for Beginners

Hello guys, My name is Rohit Kumar Thakur and In this video, I am gonna show you how to implement n-queens problem using ...

7:41
Python program to implement n-queens problem using backtracking | Python Tutorials for Beginners

6,028 views

2 years ago

Abdul Bari
6.1 N Queens Problem using Backtracking

N-Queens problem state space tree PATREON : https://www.patreon.com/bePatron?u=20475192 Courses on Udemy ...

13:41
6.1 N Queens Problem using Backtracking

2,689,777 views

7 years ago

Inside code
N-queens problem (Backtracking) - Inside code

Source code: https://gist.github.com/syphh/e607806f848bbca5e81624d9258e2b6c Learn graph theory algorithms: ...

14:13
N-queens problem (Backtracking) - Inside code

11,854 views

3 years ago

Timothy H Chang
Leetcode - N-Queens (Python)

May 2021 Leetcode Challenge Leetcode - N-Queens #51 Difficulty: Hard.

10:36
Leetcode - N-Queens (Python)

3,635 views

4 years ago

GeeksforGeeks
N Queen Problem | Backtracking | GeeksforGeeks

Find Complete Code at GeeksforGeeks Article: http://www.geeksforgeeks.org/backtracking-set-3-n-queen-problem/ Soundtrack: ...

5:15
N Queen Problem | Backtracking | GeeksforGeeks

258,682 views

8 years ago

Back To Back SWE
The N Queens Problem using Backtracking/Recursion - Explained

Code - https://backtobackswe.com/platform/content/the-n-queens-problem/solutions Free 5-Day Mini-Course: ...

14:29
The N Queens Problem using Backtracking/Recursion - Explained

148,271 views

7 years ago

NeetCode
N-Queens II - Leetcode 52 - Python

https://neetcode.io/ - A better way to prepare for Coding Interviews Problem Link: https://neetcode.io/problems/n-queens-ii 0:00 ...

13:58
N-Queens II - Leetcode 52 - Python

39,689 views

3 years ago

ChipSqueax
N Queens Problem in Python (Recursive Backtracking)

Hi! In this video, we shall be solving the n-queens problem using Python. We shall employ an algorithm called Recursive ...

6:27
N Queens Problem in Python (Recursive Backtracking)

8,113 views

4 years ago

CodeLucky
Backtracking Explained: N-Queens Problem & More!

Dive into the world of backtracking! This video provides a beginner-friendly introduction to backtracking, a powerful algorithmic ...

7:55
Backtracking Explained: N-Queens Problem & More!

33 views

9 months ago

OttoBotCode
Solving the N-Queens Problem - The Easiest Algorithm

In this video we attempt to solve the N-Queens Problem using a super simple and effective algorithm. You will see how a few ...

12:25
Solving the N-Queens Problem - The Easiest Algorithm

11,045 views

4 years ago

Sasa codes
LEETCODE 51 N QUEENS PYTHON | Backtracking

I'm showing you how to solve the LEETCODE 51 N QUEENS question using python. I'll show you the thought process. I also show ...

13:03
LEETCODE 51 N QUEENS PYTHON | Backtracking

156 views

3 years ago

Bitflip
Solve ANY Backtracking Problem on Leetcode (Template + Explanation)

Learn how to actually solve recursive backtracking problems and avoid common mistakes. I'll walk you through the 4-step ...

7:25
Solve ANY Backtracking Problem on Leetcode (Template + Explanation)

30,037 views

7 months ago

Will Knipe
NQueens Genetic Algorithm

Genetic algorithm to solve the N Queens puzzle.

5:42
NQueens Genetic Algorithm

20,692 views

8 years ago

TutorialsPoint
Back Tracking Algorithm  N Queen's Algorithm

Back Tracking Algorithm N Queen's Algorithm Watch More Videos at: https://www.tutorialspoint.com/videotutorials/index.htm ...

7:43
Back Tracking Algorithm N Queen's Algorithm

173,863 views

7 years ago

Tushar Roy - Coding Made Simple
N Queen Problem Using Backtracking Algorithm

https://www.facebook.com/tusharroy25 ...

18:04
N Queen Problem Using Backtracking Algorithm

346,341 views

9 years ago

HowToCode
How to code - solve 8 queens problem in python - no talking

solve eight queens problem in python. Chapters: 00:00 : Setup 00:03:08 Create Board 00:10:08 Solve Problem 00:19:21 Run ...

19:35
How to code - solve 8 queens problem in python - no talking

439 views

2 years ago

AccelerateAI Careers
🥇Leetcode51 N-Queens | Hard | Python |#amazon, #meta and #microsoft🔥 #leetcode #coding #backtracking

Leetcode51 N-Queens | Hard | Python |#amazon, #meta and #microsoft #leetcode #coding #leetcodehard #backtracking It is a ...

15:41
🥇Leetcode51 N-Queens | Hard | Python |#amazon, #meta and #microsoft🔥 #leetcode #coding #backtracking

357 views

1 year ago

Algorithms Made Easy
N-Queens | Live Coding with Explanation | Leetcode - 51

Get Discount on GeeksforGeeks courses (https://practice.geeksforgeeks.org/courses) by using coupon code: ALGOMADEASY To ...

11:45
N-Queens | Live Coding with Explanation | Leetcode - 51

12,154 views

4 years ago

sampad kar
N-Queens Problem | Design And Analysis of Algorithms | Backtracking | Python

Code: def check(dp,row,col,n): for i in range(row,-1,-1): if dp[i-1][col]=='Q': return False for j in range(col,-1,-1): if dp[row][j-1]=='Q': ...

4:19
N-Queens Problem | Design And Analysis of Algorithms | Backtracking | Python

47 views

1 year ago