9 lines
188 B
Python
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 |