moving files

This commit is contained in:
Debucquoy
2023-02-15 13:40:50 +01:00
parent 93ae5a67d2
commit 2109fa74c0
81 changed files with 126 additions and 0 deletions

View File

@ -0,0 +1,16 @@
tab = map(int, input().split)
def nombre_tasse(tab):
"""count the ammount of tasse following weird set of rules """
start_cup = 0
in_cup = False
for k, v in enumerate(tab):
if v < tab[k+1]:
in_cup = True
start_cup = k
elif v < tab[k-1]:
if
return count
print(nombre_tasse(tab))