Skip to content

Commit 714b047

Browse files
committed
feat: add two_sum
1 parent 462b1ba commit 714b047

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-test-reproducibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
fi
6363
6464
- name: Check test case count
65-
run: poetry run python .templates/check_test_cases.py --threshold=10
65+
run: poetry run python .templates/check_test_cases.py --threshold=5 --max=100
6666

6767
- name: Backup existing problems
6868
run: |

.templates/check_test_cases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def main(
8282
typer.echo(f"Invalid max_results value: {max_results}", err=True)
8383
raise typer.Exit(1)
8484

85-
typer.echo(f"Files with ≤{threshold} test cases ({len(filtered_files)} total):")
85+
typer.echo(f"Problems with ≤{threshold} test cases ({len(filtered_files)} total):")
8686
for filename, count in filtered_files:
8787
typer.echo(f"{filename}: {count} test cases")
8888

0 commit comments

Comments
 (0)