Delete day01-2.py

This commit is contained in:
2022-12-06 09:20:47 +00:00
committed by GitHub
parent 69b02b9d55
commit 73c553802c

View File

@@ -1,14 +0,0 @@
#!/usr/bin/python3
input = open('input.txt', 'r').readline()
i = 0
different = []
while(len(different) < 13):
if(input[i] not in different):
different.append(input[i])
else:
different = []
i += 1
print(i - 1)