ctci
ctci copied to clipboard
Python Coding Style
Coding Style is somehow much important in coding interview. Python Coding interview is different from Java and C/C++. I recommend following Google Python Style http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
For example, naming of functions:
Functions lower_with_under() _lower_with_under()
I'm not working on the python code myself -- these are all user submitted. However, it's a good reminder to other people who choose to submit solutions.
That said, it's good to get the solutions, even if they're not in the correct style.