From 54c15538923fb71ff69e35759b421ba897fc1a69 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 17 Dec 2024 14:09:17 -0800 Subject: [PATCH] refactor: Remove distribution of solutions table --- benchmark/problem_stats.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/benchmark/problem_stats.py b/benchmark/problem_stats.py index 810b48f42..ba18cf441 100755 --- a/benchmark/problem_stats.py +++ b/benchmark/problem_stats.py @@ -67,15 +67,5 @@ def analyze_exercise_solutions(): never_solved = 133 - len(exercise_solutions) print(f"Never solved by any model: {never_solved}") - # Distribution of solutions - solved_by_counts = defaultdict(int) - for models in exercise_solutions.values(): - solved_by_counts[len(models)] += 1 - - print("\nDistribution of solutions:") - for count in sorted(solved_by_counts.keys()): - print(f"Solved by {count} models: {solved_by_counts[count]} exercises") - - if __name__ == "__main__": analyze_exercise_solutions()