kmsvnc/test.py
2023-04-25 21:02:11 +08:00

9 lines
228 B
Python

import json
with open("/tmp/map.json") as f:
cmap = json.load(f)
c = 0
for y in range(1080):
for x in range(1920):
if str(c) not in cmap:
print(f"{c=} {x=} {y=}")
c+=1