You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/Demo.ipynb
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,11 @@
18
18
"source": [
19
19
"# Instructions\n",
20
20
"\n",
21
-
"* This notebook is a demo simulating the study used for the [Programming Puzzles](https://arxiv.org/abs/2106.05784) paper (with some modifications to run locally).\n",
22
-
"* Visit our repository to explore the full dataset and contribute new puzzles: https://github.com/microsoft/PythonProgrammingPuzzles \n",
21
+
"* This [Jupyter](https://jupyter.org/) notebook is a demo simulating the study used for the [**Programming Puzzles**](https://arxiv.org/abs/2106.05784) paper (with some modifications to run locally).\n",
22
+
"* You can reuse the same notebook cells to solve all puzzles (run cell with Ctrl+Enter), or open new cells as you advance (Shift+Enter).\n",
23
+
"\n",
24
+
"\n",
25
+
"* **Visit our repository** to explore the full dataset and **contribute your own new puzzles**: https://github.com/microsoft/PythonProgrammingPuzzles.\n",
23
26
"\n",
24
27
"## Overview\n",
25
28
"\n",
@@ -37,9 +40,10 @@
37
40
"* If you would like to give up and skip to the next puzzle without waiting, you can call `give_up()`.\n",
38
41
"\n",
39
42
"\n",
40
-
"## Possible issues and contact details\n",
43
+
"## Possible issues\n",
41
44
"\n",
42
45
"* Remember to use `cur_puzzle()` if you lost the code of the current puzzle.\n",
46
+
"* For any feedback, please visit our [GitHub repository](https://github.com/microsoft/PythonProgrammingPuzzles) and reach out to us by email.\n",
Copy file name to clipboardExpand all lines: notebooks/demo/demo.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -241,8 +241,10 @@ def reset_widgets(): # close existing widgets
241
241
defprint_solving_times():
242
242
print("="*10)
243
243
print('Check our "Programming Puzzles" paper (section 5.1) to see how difficult GPT-3 and others found each puzzle to be: https://arxiv.org/abs/2106.05784')
244
+
print()
245
+
print('Visit our GitHub repository to explore the full dataset and contribute your own puzzles: https://github.com/microsoft/PythonProgrammingPuzzles')
0 commit comments