mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-25 18:38:39 +00:00
Compare commits
2 Commits
e80302e2cf
...
9d77d9f917
Author | SHA1 | Date | |
---|---|---|---|
|
9d77d9f917 | ||
|
6352fec07e |
@ -2,8 +2,8 @@ from typing import List, Tuple, Union
|
|||||||
|
|
||||||
|
|
||||||
def split_list(
|
def split_list(
|
||||||
timings: List[Union[int, float, str]]
|
timings: list[int | float | str],
|
||||||
) -> Tuple[List[Union[int, float]], List[Union[int, float]], Union[int, float]]:
|
) -> tuple[list[int | float], list[int | float], int | float]:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
This algorithm is a brute-force search over (nearly) all 2^n
|
This algorithm is a brute-force search over (nearly) all 2^n
|
||||||
|
Loading…
x
Reference in New Issue
Block a user