Skip to content

Commit

Permalink
sourcery change
Browse files Browse the repository at this point in the history
  • Loading branch information
MisileLaboratory committed Nov 27, 2023
1 parent 93ceda6 commit 0ceca3a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion projects/xobusy/dhs/chall1021.py
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
open(next(char for char in string.printable if ord(char) is 102)+next(char for char in string.printable if ord(char) is 108)+next(char for char in string.printable if ord(char) is 97)+next(char for char in string.printable if ord(char) is 103)+next(char for char in string.printable if ord(char) is 46)+next(char for char in string.printable if ord(char) is 116)+next(char for char in string.printable if ord(char) is 120)+next(char for char in string.printable if ord(char) is 116)).readline()
open(
next(char for char in string.printable if ord(char) == 102)
+ next(char for char in string.printable if ord(char) == 108)
+ next(char for char in string.printable if ord(char) == 97)
+ next(char for char in string.printable if ord(char) == 103)
+ next(char for char in string.printable if ord(char) == 46)
+ next(char for char in string.printable if ord(char) == 116)
+ next(char for char in string.printable if ord(char) == 120)
+ next(char for char in string.printable if ord(char) is 116)
).readline()

0 comments on commit 0ceca3a

Please sign in to comment.