Delete 11.py

This commit is contained in:
2026-03-01 02:00:09 -08:00
parent f1bc254c6b
commit 974f99ea8f

13
11.py
View File

@@ -1,13 +0,0 @@
def f(x, p1, p2):
if x == 3:
return 1
elif x == 38:
p1 += 1
elif x == 18:
p2 += 1
else:
if p2 >= 1 or p1 >= 1:
return f(x - 3, p1, p2) + f(x // 3, p1, p2) + f(x - 5, p1, p2)
print(f(80, 0, 0))