day4
This commit is contained in:
parent
b2608af813
commit
c41a4c2037
2 changed files with 46 additions and 0 deletions
19
4/4.py
Executable file
19
4/4.py
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
|
||||
start = 125730
|
||||
end = 579381
|
||||
|
||||
for x in range(start, end+1):
|
||||
s = str(x)
|
||||
fail=False
|
||||
double=False
|
||||
for n in range(0,5):
|
||||
if s[n] > s[n+1]:
|
||||
fail = True
|
||||
break
|
||||
if s[n] == s[n+1]:
|
||||
double = True
|
||||
if double and not fail:
|
||||
print(x)
|
Loading…
Add table
Add a link
Reference in a new issue