summaryrefslogtreecommitdiff
path: root/AlgoDesignAndTechniqueEdxPython/tests/gcdlcmTest.py
AgeCommit message (Collapse)Author
2018-08-19Great LCM exercise. Done!Haidong Ji
2 things are really interesting: 1. How to find the right test cases. I think I'll probably need to go back and re-read how to do an exhautisive testing 2. Python 3's floor division versus true division (// and /) operators are interesting. This exercise discussion helped me: https://courses.edx.org/courses/course-v1:UCSanDiegoX+ALGS200x+2T2017/discussion/forum/course/threads/5a3d32d644a15008df00062e and this one: https://stackoverflow.com/questions/19507808/python3-integer-division and this one: https://www.python.org/dev/peps/pep-0238/