ben
/
aoc
1
0
Fork 0

idk this style makes more sense here
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2022-12-13 14:11:30 -05:00
parent e289e88ac1
commit 9be3704293
1 changed files with 2 additions and 2 deletions

View File

@ -44,14 +44,14 @@ public sealed class Day11 : Day
public override object Part1()
{
foreach (var _ in Enumerable.Range(0, 20)) DoRound();
Enumerable.Range(0, 20).ForEach(_ => DoRound());
return MonkeyBusiness();
}
public override object Part2()
{
ProcessInput();
foreach (var _ in Enumerable.Range(0, 10_000)) DoRound(part1: false);
Enumerable.Range(0, 10_000).ForEach(_ => DoRound(part1: false));
return MonkeyBusiness();
}