File: mem_test_khash.py

package info (click to toggle)
python-cykhash 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,240 kB
  • sloc: python: 3,954; sh: 90; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 107 bytes parent folder | download
1
2
3
4
5
6
7
8
9
import sys
from cykhash import Int64Set

N=int(sys.argv[1])

s=Int64Set()
for i in range(N):
    s.add(i)