flatten(list_of_lists)
Signature: flatten(list_of_lists: List[List[Any]]) -> List[Any]
Flatten a list of lists into a single list.
Example
print(flatten([[1,2],[3,4]])); # [1,2,3,4]
Signature: flatten(list_of_lists: List[List[Any]]) -> List[Any]
Flatten a list of lists into a single list.
Example
print(flatten([[1,2],[3,4]])); # [1,2,3,4]