Some different output!

This commit is contained in:
unlockable
2023-11-29 16:26:24 +08:00
parent ba35368132
commit d0cd4c747c
8 changed files with 97 additions and 36 deletions

9
2023206/check_tree.py Normal file
View File

@@ -0,0 +1,9 @@
import random
size = 1000
arr = list(range(0, size))
random.shuffle(arr)
with open("random_num.txt", 'w') as f:
f.write("%d\n" % size)
for i in arr:
f.write("%d " % i)
f.write('\n')