Completed
Introduction
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
N-Queens, N-Knights, Sudoku Solver - Backtracking Questions
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 Q1 : N-Queens Problem
- 3 How to determine if a problem is of recursion and backtracking?
- 4 Code for N-Queens Problem
- 5 Complexity Analysis Correction: Linear Recurrence Relation Method*
- 6 How to eliminate for loops?
- 7 Q2 : N-Knights Problem
- 8 Code for N-Knights Problem
- 9 Q3 : Sudoku Solver Problem LeetCode
- 10 Code for Sudoku Solver Problem
- 11 Correction: board[row][i] == num
- 12 Code for Sudoku Solver Problem
- 13 Complexity Analysis for Sudoku Solver Problem
- 14 Outro