diff --git a/Python/Functions.py b/Python/Functions.py index 3a2048f..db8c279 100644 --- a/Python/Functions.py +++ b/Python/Functions.py @@ -6,6 +6,8 @@ def returnSmallest(a, b): return a # Add your functions below this line :) -------------------------------------- +def returnMin(a,b): + return min(a,b) # A function to print a reversed message def reverseMessage(x):