Question 1:
Suppose you have a dictionary of words in plain text. Come up with an algorithim that takes in a set of letters and returns all the words you can make up with those letters.
'intwer' -> [winter] you can probably come up with more but you get the point
Question 2:
Suppose you have a file that's too large to fit in to memory filled with numbers. Come up with a method that returns the top 10 items in the file.