Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
pt1_hs20
lecture
Commits
4117ded4
Commit
4117ded4
authored
Dec 17, 2020
by
Roger Kaeppeli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add that script repository will be available during the exam
parent
0f473bee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
13 deletions
+1
-13
README.md
README.md
+1
-0
exercises/ex13/solutions/competition/TAs.py
exercises/ex13/solutions/competition/TAs.py
+0
-13
No files found.
README.md
View file @
4117ded4
...
...
@@ -125,6 +125,7 @@ through the mailing list.
(See https://docs.python.org/3.8/download.html)
We recommend that you try it out before the exam.
*
As needed, offline versions of the documentation for Python libraries.
*
The script repository
*
This is an open-book exam, which means that you can bring any written
material (books, notes, printed code, ...).
...
...
exercises/ex13/solutions/competition/TAs.py
deleted
100755 → 0
View file @
0f473bee
p
=
print
a
=
b
=
''
i
=
26
while
i
:
l
=
chr
(
123
-
i
);
a
+=
l
;
b
+=
l
.
upper
()
+
l
;
i
-=
1
c
=
'-'
*
23
p
(
b
[::
2
]
+
a
);
p
(
b
);
p
(
c
)
while
b
:
p
(
'| %-20s|'
%
' '
.
join
(
b
[:
10
]));
b
=
b
[
10
:]
p
(
c
)
d
=
'prelpamilpoveene'
for
e
in
a
:
if
e
in
'aglo'
:
x
=
e
+
d
[
i
::
4
];
b
+=
', %s begins with '
%
x
+
e
;
e
=
e
+
': '
,
x
;
i
+=
1
p
([
*
e
])
p
(
b
[
2
:])
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment