Skip to content

Commit

Permalink
Remove output
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jan 19, 2024
1 parent bffacf6 commit a239452
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions day21/src/day21.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,6 @@ long OccupiedCount(List<List<long>> maze) =>
.ToList())
.ToList();

var stepped = maze;
for (int i = 0; i < 6; i++)
{
Console.WriteLine($"{OccupiedCount(stepped)},");
stepped = Step(stepped);
}

long part1 = OccupiedCount(StepN(maze, 64));

Console.WriteLine($"Part 1: {part1}");
Expand Down

0 comments on commit a239452

Please sign in to comment.