-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_list.py
70 lines (54 loc) · 1.18 KB
/
user_list.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from itertools import permutations,combinations
from project.model import Facilities
L = []
perm = permutations([1,2,3,4])
for i in list(perm):
L.append(i)
for i in list(permutations([1,1,1,2])):
if i in L:
continue
L.append(i)
for i in list(permutations([1,1,1,3])):
if i in L:
continue
L.append(i)
for i in list(permutations([1,1,1,4])):
if i in L:
continue
L.append(i)
for i in list(permutations([2,2,2,1])):
if i in L:
continue
L.append(i)
for i in list(permutations([2,2,2,3])):
if i in L:
continue
L.append(i)
for i in list(permutations([2,2,2,4])):
if i in L:
continue
L.append(i)
for i in list(permutations([3,3,3,1])):
if i in L:
continue
L.append(i)
for i in list(permutations([3,3,3,2])):
if i in L:
continue
L.append(i)
for i in list(permutations([3,3,3,4])):
if i in L:
continue
L.append(i)
L.append((1,1,1,1))
L.append((2,2,2,2))
L.append((3,3,3,3))
L.append((4,4,4,4))
for i in list(permutations([1,2,3,3])):
if i in L:
continue
L.append(i)
# print(L)
# perm = permutations
# print(L[0][0])
# print(len(L))