File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : New puzzle
3+ about : Create your own puzzle by defining a function
4+ title : New puzzle
5+ labels : New-puzzle
6+ assignees : akalai
7+
8+ ---
9+
10+ ``` python
11+ def sat (x : str ):
12+ """ optional problem description"""
13+ return " Hello " + x == " Hello world" # change this to your puzzle
14+ ```
15+
16+ Solution hidden below so that other people can try to solve it.
17+ <details ><summary >Reveal solution</summary >
18+
19+ ``` python
20+ def sol ():
21+ return " world" # replace with your solution
22+ ```
23+ </details >
24+
25+ Please post your solutions to this puzzle in the comments using the following formatting:
26+ ````
27+ <details><summary>Reveal solution</summary>
28+ ```python
29+ def sol():
30+ return "world" # replace with your solution
31+ ```
32+ </details>
33+ ````
You can’t perform that action at this time.
0 commit comments