Files

10 lines
249 B
C#
Raw Permalink Normal View History

2025-07-20 03:56:21 -04:00
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; }
}