You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An array is squareful if the sum of every pair of adjacent elements is a perfect square. Given an integer array nums, return the number of permutations of nums that are squareful. Two permutations perm1 and perm2 are different if there is some index i such that perm1[i] != perm2[i].
🧩 Rush01 (42 Paris Piscine) — Sub-millisecond Skyscrapers puzzle solver in C, built with a custom backtracking core and a handcrafted constraint propagation engine.
A C-based command-line solver for the 4x4 Skyscrapers puzzle, which finds grid solutions based on visibility clues and unique building heights in each row and column.
This is a simple yet powerful Sudoku Solver implemented in C using backtracking. The program takes an incomplete 9x9 Sudoku puzzle as input (with 0 representing blank cells) and fills it with a valid solution if one exists.
A recursive backtracking solution for the Peg Solitaire puzzle that simulates moves on a 7x7 board, aiming to achieve a single remaining piece in the center after 31 moves.