On Sunday, 14 April 2013 05:44:15 UTC+3, sk wrote: > I do use java, and even though one can compete in codejam, do you agree that > C++ is a better languague to compete in code jam. I see the top 5 are using > C++.
The runtime of your solution should usually pale in comparison with the time it takes you to come up with an algorithm. If you have a solution with good complexity, then even a relatively slow language like python works well, if you have a solution with bad complexity then even writing your solution in assembler won't help you, therefore you should use whatever language you find it easy to write a good solution in. -- 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/msg/google-code/-/tXDmLl-EAD0J. For more options, visit https://groups.google.com/groups/opt_out.
