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