Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

9
Toc Boum .py Normal file
View File

@@ -0,0 +1,9 @@
input = 3188
res = (0, input)
for i in range(1, input//13):
j = (input-i*13)//7
if i*13+j*7==input:
if abs(i-j)<abs(res[0]-res[1]):
res = (i,j)
print(res)