diff options
Diffstat (limited to '')
-rw-r--r-- | csci1913/Python/lab3_strap012.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csci1913/Python/lab3_strap012.py b/csci1913/Python/lab3_strap012.py index bc64d2a..f9df918 100644 --- a/csci1913/Python/lab3_strap012.py +++ b/csci1913/Python/lab3_strap012.py @@ -7,7 +7,8 @@ def Reduce(F,S): def returnGreater(a,b): if a > b: return a - return b + else: + return b #Implementation from Lab def Sort(T): |