Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docs.it4i.cz
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
docs.it4i.cz
Merge requests
!335
Karolina matrix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Karolina matrix
karolina-matrix
into
master
Overview
0
Commits
5
Pipelines
6
Changes
5
Merged
Lukáš Krupčík
requested to merge
karolina-matrix
into
master
3 years ago
Overview
0
Commits
5
Pipelines
6
Changes
5
Expand
0
0
Merge request reports
Compare
version 3
version 4
4fcabad8
3 years ago
version 3
6f00f999
3 years ago
version 2
53980be7
3 years ago
version 1
02571563
3 years ago
master (base)
and
version 4
latest version
2e6bf4c8
5 commits,
3 years ago
version 4
4fcabad8
4 commits,
3 years ago
version 3
6f00f999
3 commits,
3 years ago
version 2
53980be7
2 commits,
3 years ago
version 1
02571563
1 commit,
3 years ago
Show latest version
5 files
+
11
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
scripts/combinations.py
+
1
−
1
Options
@@ -7,7 +7,7 @@ from __future__ import print_function
import
itertools
import
re
CHARS
=
[
'
A
'
,
'
S
'
,
'
U
'
,
'
T
'
,
'
D
'
,
'
K
'
]
CHARS
=
[
'
K
'
,
'
S
'
,
'
U
'
,
'
T
'
,
'
D
'
]
MASK
=
''
.
join
(
reversed
(
CHARS
))
for
i
in
range
(
1
,
len
(
CHARS
)
+
1
):
for
comb
in
itertools
.
combinations
(
CHARS
,
i
):
Loading