Int¶
ソースコード¶
from titan_pylib.others.Int import Int
展開済みコード¶
1# from titan_pylib.others.Int import Int
2import random
3
4
5class Int(int):
6
7 _rand = random.getrandbits(32)
8 while _rand == 0:
9 random.getrandbits(32)
10
11 def __init__(self, x: int):
12 int.__init__(x)
13
14 def __hash__(self):
15 return super(Int, self).__hash__() ^ Int._rand