added petty-difference
This commit is contained in:
parent
f67df367b2
commit
5316079c8c
5 changed files with 17 additions and 0 deletions
1
petty-difference/description.md
Normal file
1
petty-difference/description.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
I found two files in a secret room. They look like jumbled letters with no patterns. I mean look at it! [file1](${file1_txt}) is identical to [file2](${file2_txt}), right?
|
1
petty-difference/file1.txt
Normal file
1
petty-difference/file1.txt
Normal file
File diff suppressed because one or more lines are too long
1
petty-difference/file2.txt
Normal file
1
petty-difference/file2.txt
Normal file
File diff suppressed because one or more lines are too long
4
petty-difference/grader.py
Normal file
4
petty-difference/grader.py
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
def grade(random, key):
|
||||||
|
if key.find("th1s_m4y_b3_th3_d1ff3r3nc3_y0u_w3r3_l00k1ng_4") != -1:
|
||||||
|
return True, "You got it! Great Job!"
|
||||||
|
return False, "No."
|
10
petty-difference/problem.yml
Normal file
10
petty-difference/problem.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
title: Petty Difference
|
||||||
|
author: dududum561
|
||||||
|
hint: No hint
|
||||||
|
category: Forensics
|
||||||
|
autogen: false
|
||||||
|
programming: false
|
||||||
|
value: 50
|
||||||
|
files:
|
||||||
|
- file1.txt
|
||||||
|
- file2.txt
|
Loading…
Reference in a new issue