3 lines
110 B
Python
3 lines
110 B
Python
#!/usr/bin/env python3
|
|
|
|
print(next(i+4for l in open("input.txt")for i in range(len(l))if len({*l[i:i+4]})==4)) |