Am Montag, 13. April 2015 15:12:38 UTC+2 schrieb Mustafa Hussain: > Hi, > > I used Python to get through the qualification round and it is the langauge > I'm most comfortable with. However, I was looking at 2014 codejam results and > see people who used Python eventually switched to C++/Java/D as the > competition went along. Is this something I should consider? Round 1A is in > <5 days but if I start now I think I can get comfortable with the basics of > C++ (I have used it a bit in the past) till then.
Python is fast enough. But you may miss some data structures build into other languages. For example: A binary search tree allowing log n find/erase/insert of some element in the tree. Useful for example in 2013 round 1A Problem B. -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-code/573ad5c0-d31a-40ac-9825-9559896617d7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
