mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-25 10:28:39 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
f7198f1e89
commit
e80302e2cf
@ -1,6 +1,9 @@
|
|||||||
from typing import List, Tuple, Union
|
from typing import List, Tuple, Union
|
||||||
|
|
||||||
def split_list(timings: List[Union[int, float, str]]) -> Tuple[List[Union[int, float]], List[Union[int, float]], Union[int, float]]:
|
|
||||||
|
def split_list(
|
||||||
|
timings: List[Union[int, float, str]]
|
||||||
|
) -> Tuple[List[Union[int, float]], List[Union[int, float]], Union[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