Skip to content

Latest commit

 

History

History
84 lines (70 loc) · 3.67 KB

2007-11-01-50-states-programming-puzzle.markdown

File metadata and controls

84 lines (70 loc) · 3.67 KB
date title layout permalink slug
2007-11-01 00:16:19 -0700
50 States Programming Puzzle
post
/blog/2007/11/50-states-programming-puzzle/index.html
50-states-programming-puzzle

Anders Pearson posted an interesting programming puzzle today on Thraxil.org.

Take the names of two U.S. States, mix them all together, then rearrange the letters to form the names of two other U.S. States. What states are these?

He found out about it from Mark Nelson who, in turn, heard it on NPR. It's not a terribly difficult riddle if you take a moment to think about it. But from a programmer's perspective it smells like one of the many brain teasers we face in early Computer Science exams or job interviews. The puzzle isn't so much about being the first person with the correct answer or even getting the right answer at all. These problems are designed to reveal how you approach them. They're designed to show how you think.

That's what intrigued me so much about Anders' post. He used it as an opportunity to compare programming styles between low and high level languages (and, by extension, how low and high level programmers think). In this case, Nelson solved the problem in C++ using STL libraries. (Damn.) Anders wrote his solution in Python.

Both solutions are valid. Each arrives at the same answer. However the ease at which the solution is attained is radically different - not only in time spent writing the program but also in the readability of the code.

I see this dynamic every day in the code I write. My day job uses PHP, but at night I'm programming in Objective-C. I'm still a novice at ObjC and Cocoa (although I do have a strong C/C++ background), so perhaps inexperience is clouding my judgement, but there are so many times where I find myself longing for the flexibility of a high level, scripting language.

In any case, here's my analogous solution to the 50 States problem using PHP. (For obvious reasons, my code is nearly line by line identical to Anders' Python solution.)

{% highlight php linenos %}