From 9fa4e43a1acd2d5c84a0d0f3f36131abfdc9f7d1 Mon Sep 17 00:00:00 2001 From: Shail Shah <64552060+shail-git@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:18:01 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f5b2d06..8bef31a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # MathNoteSolver Making an open source MVP similar to the new AI math notes feature in IOS 18 +cool From 500609ca79d26a84a383f104a93c4c2f50c25d86 Mon Sep 17 00:00:00 2001 From: Shail Shah <64552060+shail-git@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:19:34 -0400 Subject: [PATCH 2/2] Create math.py --- math.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 math.py diff --git a/math.py b/math.py new file mode 100644 index 0000000..8b7697c --- /dev/null +++ b/math.py @@ -0,0 +1,14 @@ +def add(a,b): + return a+b + +def subtract(a,b): + return a-b + +def mul(a,b): + return a*b + +def div(a,b): + return a/b + +def pow(a,b): + return a**b