From 974f99ea8f1ab7609290f2c0a2bccf562c1a0033 Mon Sep 17 00:00:00 2001 From: future Date: Sun, 1 Mar 2026 02:00:09 -0800 Subject: [PATCH] Delete 11.py --- 11.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 11.py diff --git a/11.py b/11.py deleted file mode 100644 index a58b13d..0000000 --- a/11.py +++ /dev/null @@ -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))