Write your own rand function which returns random numbers in a given range(input) so that the numbers in the given range is equally likely to appear.
Given a set of random strings, write a function that returns a set that groups all the anagrams together.
Ex: star, dog, car, rats, arc - > {(star, rats), (arc,car), dog}