Created
August 18, 2023 03:16
-
-
Save theepicsnail/8795cfc432d8745f3dab1e212317ab1e to your computer and use it in GitHub Desktop.
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
>>> d = defaultdict(int) | |
>>> for i in range(100000): | |
... d[len(set(random.randint(0,2047) for i in range(24)))] += 1 | |
... | |
>>> print(d) | |
defaultdict(<class 'int'>, {24: 87462, 23: 11775, 22: 739, 21: 23, 20: 1}) | |
87,472 | |
100,000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment