caesar
This commit is contained in:
parent
d9dc192565
commit
33cb7f3642
4 changed files with 14 additions and 0 deletions
Binary file not shown.
1
clearandconcisecommentaryoncaesarcipher/description.md
Normal file
1
clearandconcisecommentaryoncaesarcipher/description.md
Normal file
|
@ -0,0 +1 @@
|
|||
The flag is in [ClearAndConciseCommentaryonCaesarCipher.txt](${ClearAndConciseCommentaryonCaesarCipher.txt}). Use lowercase.
|
4
clearandconcisecommentaryoncaesarcipher/grader.py
Normal file
4
clearandconcisecommentaryoncaesarcipher/grader.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
def grade(autogen, answer):
|
||||
if answer.find("yougotit")!=-1:
|
||||
return True, "Correct!"
|
||||
return False, "Nope, try again."
|
9
clearandconcisecommentaryoncaesarcipher/problem.yml
Normal file
9
clearandconcisecommentaryoncaesarcipher/problem.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
title: Caesar on Steroids
|
||||
author: nicebowlofsoup
|
||||
hint: Practice!
|
||||
category: Cryptography
|
||||
autogen: false
|
||||
programming: false
|
||||
value: 20
|
||||
files:
|
||||
- ClearAndConciseCommentaryonCaesarCipher.pdf
|
Loading…
Reference in a new issue