mirror of
https://github.com/KevinMidboe/knowit_julekalender-2018.git
synced 2025-10-29 09:40:18 +00:00
15 lines
233 B
Python
Executable File
15 lines
233 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
def main():
|
|
total = 0
|
|
for i in range(18163106):
|
|
zeros = str(i).count('0')
|
|
if zeros > len(str(i)) - zeros:
|
|
total += i
|
|
|
|
return total
|
|
|
|
if __name__ == '__main__':
|
|
res = main()
|
|
print(res)
|