mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-12 18:53:47 +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)
|
||||
for (int i = 0; i < 9; i++)
|
||||
// Set the number of steps to run
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
CompleteStep(ref polymerTemplate, ref lines, rules);
|
||||
//Console.WriteLine($"After step {i+1}: {polymerTemplate}");
|
||||
|
||||
Reference in New Issue
Block a user