diff --git a/benchmark/problem_stats.py b/benchmark/problem_stats.py index 8a43309a4..c4c261ecb 100755 --- a/benchmark/problem_stats.py +++ b/benchmark/problem_stats.py @@ -177,7 +177,7 @@ def analyze_exercise_solutions(dirs=None, topn=None): counts = [0] * (total_models + 1) for ex, models in exercise_solutions.items(): counts[len(models)] += 1 - + for i, count in enumerate(counts): print(f"{i:>6d} {count:>9d}")