mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-06 02:13:15 +08:00
Upgrade to Python 3.12 (#9576)
* DRAFT: GitHub Actions: Test on Python 3.12 Repeats #8777 * #8777 Some of our dependencies will not be ready yet. * Python 3.12: Disable qiskit and tensorflow algorithms * updating DIRECTORY.md --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -47,7 +47,7 @@ def combination_sum(candidates: list, target: int) -> list:
|
||||
>>> combination_sum([-8, 2.3, 0], 1)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
RecursionError: maximum recursion depth exceeded in comparison
|
||||
RecursionError: maximum recursion depth exceeded
|
||||
"""
|
||||
path = [] # type: list[int]
|
||||
answer = [] # type: list[int]
|
||||
|
Reference in New Issue
Block a user