diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-02-11 20:15:04 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-02-11 20:15:04 +0100 |
commit | bcea1e3977f629ed955c9ab886f484bad938c81a (patch) | |
tree | 53f9cea132508feedb89095942b15c73291121e8 /AoC2022/aocclj/src | |
parent | efcc7c32228d87f9f41cd5963491e9d11ee30dfb (diff) | |
download | scratch-bcea1e3977f629ed955c9ab886f484bad938c81a.tar.gz scratch-bcea1e3977f629ed955c9ab886f484bad938c81a.tar.bz2 scratch-bcea1e3977f629ed955c9ab886f484bad938c81a.zip |
day06
Diffstat (limited to 'AoC2022/aocclj/src')
-rw-r--r-- | AoC2022/aocclj/src/aocclj/day06.clj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/AoC2022/aocclj/src/aocclj/day06.clj b/AoC2022/aocclj/src/aocclj/day06.clj new file mode 100644 index 0000000..c333cad --- /dev/null +++ b/AoC2022/aocclj/src/aocclj/day06.clj @@ -0,0 +1,9 @@ +(ns aocclj.day06) + +(defn solver [window input] + (first + (keep-indexed + (fn [idx item] + (when ((comp #(= window %) count set) item) (+ window idx))) + (partition-all window 1 input)))) + |