Files
2024-01-30 05:01:05 +01:00

9 lines
188 B
Python

from typing import Iterator, Optional
def selection_sort[T](xs: Iterator[T]) -> Iterator[T]:
return []
def binary_search[T](xs: list[T], value: T) -> Optional[int]:
return None