prems21:Hi All,
This is a threading challenge competition.
I like to use Java to developed the solutions, but I have doubt, Is it necessary to use threading in code ( some times it may not be required .)
Can any one tell me what is mean by 'threading skills'.
Thanks
In the past, the judging would give a 50% penalty on the execution/speed portion of the scoring if threading was not used in the submitted solution.
'Threading skills' refer to the fact that you have to use a different approach to solve the problem with multiple threads. You have to address various issues such as concurrency, race conditions. Use google to find more info about it.
Mark