This commit is contained in:
2025-07-20 03:56:21 -04:00
commit 59539f4daa
65 changed files with 6964 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System;
public class MazeResult
{
public TimeSpan Elapsed { get; set; }
public long MemoryUsage { get; set; }
public bool PathFound { get; set; }
public int PathLength { get; set; }
public int NodesExplored { get; set; }
}