Viewing profile — brutooths
brutooths
HN member- Joined
- Tue, Nov 29, 2011, 2:13 PM UTC
- HN karma
- 1
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About brutooths
No profile information was provided.
Recent public activity
-
comment
Comment #3290335
A small simulation in Python from random import randint oneBoy=0 twoBoys=0 # 0 = boy, 1 = girl for i in range(10000): s1 = randint(0,1) s2 = randint(0,1) if s1 * s2 == 0: # Here is…