3 lines
98 B
Python
3 lines
98 B
Python
from typing import Literal
|
|
|
|
def predict(strings: list[str]) -> list[Literal[0] | Literal[1]]: ...
|