saturn comments on Quixey Engineering Screening Questions - Less Wrong
You are viewing a comment permalink. View the original post to see all comments and the full post content.
You are viewing a comment permalink. View the original post to see all comments and the full post content.
Comments (22)
Are the requirements for problem 2 intended to rule out any form of recursion?
No.
Not sure what all being said above, but cant it be done in just a simple way like
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin function fireup(i) { alert(i); i=i+1; if(i>10) { return false; }else{ fireup(i); }
} // End --> </script>
I accept, one gets good set of logics from a good and sound education, but i have to say that in field programing a lot of time experience helps to get simple and straight forward solution for your requirements. Optimization can follow on.
This solution is correct, but only works up to i ~= 30,000 because of stack depth limits.