Problem Solving
-
Review on PSAD 5.5카테고리 없음 2017. 6. 10. 18:08
While I was studying "Problem Solving with Algorithms and Data Structures using Python", I encountered two things that look very interesting. First of all, I became very interested in why Python allows a comma at the end of the list. I could find a interesting discussion on a stackoverflow page. To sum up, it is allowed to make it easier to edit multi-line lists.Second thing that I caught my att..
-
Review on PSAD 3.5카테고리 없음 2017. 5. 5. 12:19
While I was studying Problem Solving Algorithms and Data Structures using Python, I found that some of you might need more explanation on how to run the code in listings. How to use pythonds? pythonds is a package that has the basic data structures written in Python. You can down load it where the book is pointing: http://www.pythonworks.org/pythonds After downloading it, you need to install it ..
-
PSAD review on 1.13카테고리 없음 2017. 5. 2. 13:01
While I was studying PSAD, I found some interesting python features and would like to give some feedback. 1. Python has //, even tough it doesn't have ++ Interestingly, Python has '//' operator. What it does is returning the division value flooring the fraction. Please check http://stackoverflow.com/questions/183853/in-python-2-what-is-the-difference-between-and-when-used-for-division On the oth..