| I would classify atoi() as a mediocre question at best. I would look for the following in a "fine" question: 1. It demonstrates knowledge of fundamental concepts or techniques. 2. It lets you distinguish the quality of answer/implementation rather than just works or doesn't. 3. It leads to natural follow-up questions that can demonstrate the candidate's knowledge or expertise. 4. It does not require fiddly code. (e.g. linked list pointer twiddling questions: they aren't hard but are easy to muck up with a stranger staring at you.) 5. If its unrelated to what candidates normally work on, the question should not hinge on knowing a specialized "trick" to change difficulty from hard to easy. Atoi under that criteria: 1. Does not show much interesting besides a basic understanding of decimal numbers and writing loops. 2. It's hard to imagine much variability in the quality of responses. A "real" atoi implementation is not interview material: https://github.com/golang/go/blob/master/src/strconv/atoi.go... 3. I guess you could follow it up with questions on testing and error handling. Nothing super interesting comes to mind, but that could be lack of imagination on my part. 4. It meets this criteria. 5. It meets this criteria. Perhaps you have some particularly good way of posing an atoi() question. |
1. You need to know how to write a half decent test case, and, for full credit, how to write a recursive function. Check.
2. As alluded to in the previous point, we can judge the quality of the test cases. So, I think this is at least a provisional pass.
3. A really good candidate can talk about issues like Unicode, how to handle or avoid stack overflow, dealing with circular references, maybe think a bit about optimizations.
4. Unless you consider recursion to be "fiddly code," then we meet this criterion as well. I allowed people to use str() or repr() to convert things to strings, so there was no incidental difficulty there, either.
5. Nope, no tricks. Just use recursion.
So, it looks to me like I had a pretty okay question.
Anybody take issue with any of what I wrote, or have any suggestions for making it a better question?