Skip to content

Commit

Permalink
fix(2024/Day_14): typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheinxy committed Dec 15, 2024
1 parent 51f5ff3 commit 568a7be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2024/Day_14/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ partTwo input = for_ [0 .. fst size * snd size] $ \i -> do

And now, I just launch that and I look manually.

In order to be more efficient (or less unefficient), I use a grep to find lines with multiple "#" (as it will probably give me a better chance of finding the tree):
In order to be more efficient (or less inefficient), I use a `grep` to find lines with multiple "#" (as it will probably give me a better chance of finding the tree):

```hs
./Day two input | fgrep -B 101 "#####" > result
```

Read that with less, and enjoy you horrible moment
Read that with `less`, and enjoy your horrible moment

## The end part

Expand Down

0 comments on commit 568a7be

Please sign in to comment.