Skip to content

Commit

Permalink
fix bad inputs path
Browse files Browse the repository at this point in the history
  • Loading branch information
shilangyu committed Dec 23, 2020
1 parent 848e496 commit d422c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/day23.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

(Cups, int firstCup, int lastCup) getInput()
{
using (var file = new StreamReader("./input.txt"))
using (var file = new StreamReader("./inputs/day23.txt"))
{
var line = file.ReadLine();
return (new(line), line[0] - '0', line[^1] - '0');
Expand Down

0 comments on commit d422c1c

Please sign in to comment.