From 92c8b69d9b6bc1e52603c059290322d77fe70f7c Mon Sep 17 00:00:00 2001 From: alan09025 Date: Wed, 15 May 2024 13:37:55 +0800 Subject: [PATCH 1/3] [add] test.py --- test.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..e69de29 From 9c9c22727596a0d3dfb8dbf95ae29aa437eae13a Mon Sep 17 00:00:00 2001 From: alan09025 Date: Wed, 15 May 2024 15:57:57 +0800 Subject: [PATCH 2/3] [add] multiply --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 4012c7d..aea45c1 100644 --- a/main.py +++ b/main.py @@ -1,8 +1,8 @@ def add(a: int, b: int) -> int: - return a - b + return a + b def multiply(a: int, b: int) -> int: - pass + return a * b if __name__ == "__main__": print("Please input the calculation you want: ") From 29a1f1551dc3d5773977d8b1db201ba084e3bb75 Mon Sep 17 00:00:00 2001 From: alan09025 Date: Wed, 15 May 2024 16:24:44 +0800 Subject: [PATCH 3/3] [add] ignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..096746c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules/ \ No newline at end of file