Spaces:
Paused
Paused
10 reps
Browse files
app.py
CHANGED
@@ -352,7 +352,7 @@ def run_summary_hard():
|
|
352 |
orig_rows = copy.deepcopy(rows)
|
353 |
# add new rows to random positions in the table
|
354 |
print("new rows: ", new_rows)
|
355 |
-
for rep in range(
|
356 |
rows = copy.deepcopy(orig_rows)
|
357 |
for new_row in new_rows:
|
358 |
rows.insert(random.randint(0, len(rows)), new_row)
|
|
|
352 |
orig_rows = copy.deepcopy(rows)
|
353 |
# add new rows to random positions in the table
|
354 |
print("new rows: ", new_rows)
|
355 |
+
for rep in range(10):
|
356 |
rows = copy.deepcopy(orig_rows)
|
357 |
for new_row in new_rows:
|
358 |
rows.insert(random.randint(0, len(rows)), new_row)
|