БГ
Вот и думаю как организовать. Там ж ключи к AWS будут, а это очень чувствительные данные
Size: a a a
БГ
VA
$
БГ
VA
БГ
БГ
VA
VA
VA
AD
TD
БГ
AD
from itertools import permutations
VA
AD
БГ
py3
from itertools import permutations
for p in permutations([1,2,1]):
print(p)
(1, 2, 1)
(1, 1, 2)
(2, 1, 1)
(2, 1, 1)
(1, 1, 2)
(1, 2, 1)
TD
py3
from itertools import permutations
for p in permutations([1,2,1]):
print(p)
(1, 2, 1)
(1, 1, 2)
(2, 1, 1)
(2, 1, 1)
(1, 1, 2)
(1, 2, 1)
K