The judge system seems to care a lot about the speed of the solutions. It does make sense to say that faster is better, but I think that the site should differentiate between the speed of any solution in any language, and the speed within the specific languages (this has already been suggested, I know).
Now, I don't really care (at this point anyway) how fast my solution to a problem is , as long as I use the right algorithm. I just want to learn how to write Python and get training in solving problems, of which there are many fun and challenging ones.
From reading around on the board, it seems that Python is slow when it comes to I/O which, apparently, makes it quite difficult to solve problems with large I/O streams.
So, finally, here's my question: Is there a list of problems recommended for Python users? I don't mean problems which are particular easy to solve in Python because there's some handy module that more or less solves it for you, but problems which can be solved without getting an NLE result due to slow I/O or other Python-specific sluggishness.
Of course, if I at some point manage to solve some problems in Python I'll add to the list
Thank you.