diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2019-09-29 21:30:41 -0500 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2019-09-29 21:30:41 -0500 |
commit | 6eb086dbfc30c92c9a9ae5d7792d206dc4075900 (patch) | |
tree | 4045b3bf4f51837bf020f6a5f9941df898f02982 /csci1913/Python | |
parent | Finish Lab because I stoopid (diff) | |
download | homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.gz homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.bz2 homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.lz homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.xz homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.zst homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.zip |
Make code look less bad
Diffstat (limited to 'csci1913/Python')
-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): |