mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-13 19:23:46 +00:00
fix(*): Fix day 14 part 1
This commit is contained in:
+2
-2
@@ -39,8 +39,8 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the number of steps to run (1 lower than expected due to 0 indexing)
|
// Set the number of steps to run
|
||||||
for (int i = 0; i < 9; i++)
|
for (int i = 0; i < 10; i++)
|
||||||
{
|
{
|
||||||
CompleteStep(ref polymerTemplate, ref lines, rules);
|
CompleteStep(ref polymerTemplate, ref lines, rules);
|
||||||
//Console.WriteLine($"After step {i+1}: {polymerTemplate}");
|
//Console.WriteLine($"After step {i+1}: {polymerTemplate}");
|
||||||
|
|||||||
Reference in New Issue
Block a user