feat(cli): 支持多重目录结构与特殊解法运行,新增解法列表选项

This commit is contained in:
2026-03-04 16:52:33 +08:00
parent cc6b5a1fbf
commit 88df32be36
5 changed files with 16684 additions and 13 deletions

View File

@@ -115,4 +115,4 @@ def get_prime_factors(n: int) -> Set[int | None]:
if __name__ == "__main__":
print(get_prime_factors(60)) # {2, 3, 5}
print(get_prime_factors(600851475143)) # {2, 3, 5}