About Me
▼
Wednesday, October 16, 2013
Sunday, October 13, 2013
Two players play the following game: they pick a random number N (less than 2 billion) then, starting from 1, take turns multiplying the number from the previous turn with either 2 or 9 (their choice). Whoever reaches N first wins. The candidate should write a function that given N decides who wins (first or second player)?
Thursday, October 3, 2013
Two strings can be chained if the first one ends with the same character second one starts with. Given set of 'n' strings, how can we verify efficiently, whether they can be chained or not?
e.g. cat, dog, toad answer is YES.
for tape ate ass answer is NO.
for tape ate ass answer is NO.