blob: 818f805a47dfc6d6f5e7f13e648e00fd55061005 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from typing import Optional
from random import SystemRandom
system_random : Optional[SystemRandom]
def random_16() -> int:
pass
def between(first: int, last: int) -> int:
pass
|