Skip to content

Instantly share code, notes, and snippets.

View sebas7468's full-sized avatar
🎯
Focusing

Sebastián sebas7468

🎯
Focusing
  • Chile
View GitHub Profile
@ashwath10110
ashwath10110 / backtracking.cs
Created November 5, 2015 18:45
Simple Backtracking C#
public class RatInMaze
{
public int[,] board;
public int[,] sol;
public int desx;
public int desy;
public int N { get; set; }