Skip to content

Commit 08f3ab0

Browse files
committed
restore arithmetic workflow.py
1 parent 6128263 commit 08f3ab0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def get_prod_and_div(x, y):
2+
return {"prod": x * y, "div": x / y}
3+
4+
5+
def get_sum(x, y):
6+
return x + y
7+
8+
9+
def get_square(x):
10+
return x ** 2

0 commit comments

Comments
 (0)