On-campus interview problem had to do with a rectangular puzzle and fitting the square pieces together based on numbers to match up sides. On-site interview had a culture-fit interview as well as technical interview about placing coins on a clock.
Sigiloso
Not sure what type of question this is. For my understanding: Put a coin and jump to next x spot of empty space, then place it. For the jump . this is based on the value, penny jump 1, Nickel jump 5, dime jump 10. Jump until we fulfill the clock. Let the twelve spot of the clock be an ArrayList of 12 element at beginning. Then we could jump by index, remove current node, then jump by index, if jump over 12, then index+jump % the array length. do this until they array is empty. Then we are done.