From 001303eab2529f0d31fb311f7fc909f9d6884b67 Mon Sep 17 00:00:00 2001 From: skylin <84124146+skylin-specter@users.noreply.github.com> Date: Sat, 28 Dec 2024 13:38:38 +0100 Subject: [PATCH] added python function --- Python/Functions.py | 2 ++ 1 file changed, 2 insertions(+) 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):