subtraction

This commit is contained in:
Benjamin Hackl 2024-10-11 14:49:38 +02:00
parent 5ce06fdc77
commit fadc5cfcf5

View file

@ -1,3 +1,5 @@
def addition(a: float, b: float) -> str: def addition(a: float, b: float) -> str:
return a + b return a + b
def subtraction(a: float, b: float) -> float:
return a - b