This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.Random; | |
//based on this video: https://youtu.be/TGLYcYCm2FM?t=106 | |
// checks how come there are 10% left handed people, if : | |
// left-male + right-female = 17% left handed | |
// right-male + right-female = 10% left handed | |
// right-male + left-female = 22% left handed | |
// left-male + left-female = 25% left handed |