diff --git a/06/2022-12-06-golf.py b/06/2022-12-06-golf.py new file mode 100644 index 0000000..a8e13e1 --- /dev/null +++ b/06/2022-12-06-golf.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 + +a=open("06/i").read() + +for x in [4,14]: + for i in range(x,len(a)): + if sum([a[i-x:i].count(y) for y in a[i-x:i]]) == x: + print(i) + break \ No newline at end of file