StringChaos commited on
Commit
0df4202
·
1 Parent(s): 0553df9

question id and problem_idx

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,8 +14,8 @@ with open("problems.json") as f:
14
  problem_choices = [q["question_title"] for q in problems]
15
 
16
  random_idxs = list(range(len(problems)))
17
- random.seed(42)
18
- random.shuffle(random_idxs)
19
  problems = [problems[idx] for idx in random_idxs]
20
 
21
  with open("all_outputs.json") as f:
 
14
  problem_choices = [q["question_title"] for q in problems]
15
 
16
  random_idxs = list(range(len(problems)))
17
+ # random.seed(42)
18
+ # random.shuffle(random_idxs)
19
  problems = [problems[idx] for idx in random_idxs]
20
 
21
  with open("all_outputs.json") as f: