From ac47959e4bc297773186dcbcf7bce9b1db31f507 Mon Sep 17 00:00:00 2001 From: Adam Blank <blank@caltech.edu> Date: Fri, 25 Oct 2024 16:50:38 +0000 Subject: [PATCH] Update code.py --- 11/code.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/11/code.py b/11/code.py index 6dd337e..e2fa8a4 100644 --- a/11/code.py +++ b/11/code.py @@ -1,11 +1,9 @@ def f(x: int) -> int: - return x % 2 + return 0 def g(x: int) -> int: - if x > 100: - return 0 - return x + return 0 def h(x: str) -> int: -- GitLab