Commit 
							
							·
						
						cb7f1d0
	
1
								Parent(s):
							
							8bf16a6
								
fix problem
Browse files
    	
        app.py
    CHANGED
    
    | @@ -15,6 +15,7 @@ with open("problems.json") as f: | |
| 15 |  | 
| 16 | 
             
            random_idxs = list(range(len(problems)))
         | 
| 17 | 
             
            random.shuffle(random_idxs)
         | 
|  | |
| 18 |  | 
| 19 | 
             
            with open("all_outputs.json") as f:
         | 
| 20 | 
             
                all_outputs = json.load(f)
         | 
|  | |
| 15 |  | 
| 16 | 
             
            random_idxs = list(range(len(problems)))
         | 
| 17 | 
             
            random.shuffle(random_idxs)
         | 
| 18 | 
            +
            problems = [problems[idx] for idx in random_idxs]
         | 
| 19 |  | 
| 20 | 
             
            with open("all_outputs.json") as f:
         | 
| 21 | 
             
                all_outputs = json.load(f)
         | 
