Snake: Making The Game
Snake as I know it, is a game where the player controls a snake that is always in motion in a given direction where the goal is to eat…
2020, Jun 17 — 6 minute readSnake as I know it, is a game where the player controls a snake that is always in motion in a given direction where the goal is to eat…
2020, Jun 17 — 6 minute readIn computer science, dancing links is a technique for reverting the operation of deleting a node from a circular doubly linked list. This…
2020, Jun 11 — 15 minute readAlgorithm X is a recursive, nondeterministic, depth-first, backtracking algorithm that Donald Knuth (the creator) referred to as "the most…
2020, Jun 08 — 10 minute readIn computer science, the exact cover problem is a decision problem to determine if an exact cover exists, and Donald Knuth's Algorithm X is…
2020, Jun 06 — 9 minute readIf you've tried out Depth (DFS) and Breadth First Search (BFS) on the app, you'd have noticed that they both always start from the top left…
2020, Jun 03 — 8 minute readThe simplest way to solve a Sudoku puzzle would be to simply search for the answer one cell at a time. The two most basic methods of search…
2020, Jun 02 — 6 minute readA Sudoku puzzle is typically played on a 9x9 grid, where each cell can be filled with digits 1 to 9. It starts off with some parts of the…
2020, May 31 — 7 minute read