-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Randomization
Mission Peace edited this page Apr 3, 2016
·
1 revision
- Given a method to generate random number between 1 to 5, create a new method to generate random number between 1 to 7 - Rand7UsingRand5.java
- Given a list of countries with population, how do you select random country from this list. Higher the population higher the probability of selection - RandomCountrySelectionByPopluation.java
- Reservior sampling algorithm. In stream of numbers select k random numbers - SelectMRandomNumbersInStream.java
- Given an array shuffle it - ShuffleArray.java