Help get this topic noticed by sharing it on
Twitter,
Facebook, or email.
Twitter,
Facebook, or email.
Word Hunt Coding Challenge evaluation criteria
what is the criteria for evaluation of the Word Hunt coding challenge?? Please, can somenody explain what points are taken into account while evaluating a particular solution submitted by a user??
-
If it's automated then I assume it's some combination of runtime, memory usage and code size, but that would give a big advantage to compiled languages.
Is it worth re-coding a python solution in C to get better performance ? -
-
Can someone explain me how points are given for coding questions?
I got higher points for a not so optimized code and when I resubmitted a ruby code with recursion and some optimizations and I got lower points. How is it possible?
This reply was created from a merged topic originally titled
Evaluation of coding questions. -
-
HI sir,
I am very sure that you current evaluation scheme for word hunt coding challenge is not at all wise. And i know that you will reply saying that it is just your second contest and you are not clear about that and blah blah blah...
My suggestion or request is kindly run the programs sent by users over very large set of data and alot points accordingly.. If you run the program over large sets of data evaluation will be definitely easy for you. In the current evaluation you are considering some worst evaluation and increase score in terms of "7". That itself indicates that evaluation is not good.
in short again : run over very large set of data. In the current situation even brute force algorithm will work out.
This reply was created from a merged topic originally titled
PLEASE PLEASE PLEASE.... change the evaluation scheme of word hunt challenge.-
Y the increment is always 7. I did a very small modification,the increment was 7 in my points. Then i did big modification,reduced code length,removed repetition.. now the increment also "7" from old point. Expecting any reason why the increment or decrement like this.
-
-
-
-
Loading Profile...





I have a damn efficient solution and it scored 730 points whereas a pure brute force scored 737 points. BTW, the problem is very similar to this one: https://www.spoj.pl/problems/WPUZZLES/ . As you can see that with pure brute force it's not possible to solve the Question. Mine first code (with 730 pts.) was able to pass the problem in link given and yet scored less than brute force solution(which is very inefficient). Its strange and seems that the test cases are very weak. You only need luck (no intelligence) to win such competitions :)
see the change log
cpu time ? memory usage ? Any consideration of interpreted code vs. compiled code? After all in the real world we don't just care about performance, but also maintainability and how long it takes to implement.