I hereby claim:
- I am lou1306 on github.
- I am lou1306 (https://keybase.io/lou1306) on keybase.
- I have a public key ASDnyAjSj1cXM6LxSqVr5hIFJxPLxe0KNLLm8cFi1kTWSQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include "stdio.h" | |
| #include "stdlib.h" | |
| #define W 15 // Bit-Width of tuple elements (Up to 15 is fine) | |
| const int MASK = (1U << W) - 1; | |
| const int MASK2W = (1U << 2*W) - 1; | |
| const int m = 1U << (W - 1); | |
| /** | |
| * @brief Trim n into bit-width W. |
| from fractions import gcd, Fraction | |
| def intSqrt(n): | |
| """ | |
| Computes the integer square root of n, i.e. | |
| the greatest x : x*x <= n | |
| """ | |
| x = n | |
| y = (x + n // x) // 2 |
| from random import random | |
| import matplotlib.pyplot as plt | |
| PLAYERS = 100 | |
| WEALTH = 100 | |
| ROUNDS = 5000 | |
| MAX_PERCENT = 20 | |
| def myrandrange(start, stop): |