Here you can find links to runnable Java code samples, both built from technical interview questions I've had recently.

Java Boggle
This reads in a lengthy dictionary of words, and then allows you to randomly create endless "Boggle" boards. The code will then walk through each Boggle board (following the game's rules) and outputs all the possible words that can be made from the board.

Pairs From a List That Match a Sum
This interview problem was to walk through a list of integers and display any pair that summed up to a value. It was a test of optimization (could I come up with a solution with 0(n) complexity).


To learn more about the games I've worked on, go to my Games Page.
To go to my website, go to OpusGames.com.