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
"* This notebook is simulating the study used for the [Programming Puzzles](https://arxiv.org/abs/2106.05784) paper (with some modifications to run locally).\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
22
"* Visit our repository to explore the full dataset and contribute new puzzles: https://github.com/microsoft/PythonProgrammingPuzzles \n",
23
23
"\n",
24
24
"## Overview\n",
25
25
"\n",
26
26
"\n",
27
-
"* The first 3 problems are \"practice\" and the time you take will not be used in the study. This is a good chance to see how the system works.\n",
27
+
"* The first 3 problems are \"practice\" and the time you take will not be counted. This is a good chance to see how the system works.\n",
28
28
"* Puzzles are defined by `def puzzle(...)`. For each puzzle, you will try to find an input `x` which makes `puzzle(x)` return `True`.\n",
29
29
"* Type `next_puzzle()` when you are ready to start the first problem or to advance to the next problem.\n",
30
30
"* There is **no option to revisit a puzzle** and once you call `next_puzzle()` the clock starts ticking (you have up to 6 minutes per puzzle).\n",
@@ -235,6 +238,27 @@ def reset_widgets(): # close existing widgets
235
238
logger.error("reset_widgets exception")
236
239
237
240
241
+
defprint_solving_times():
242
+
print("="*10)
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')
0 commit comments