herrius's picture
Upload 259 files
32b542e
raw
history blame contribute delete
246 Bytes
# Copyright 2021 JD.com, Inc., JD AI
"""
@author: Jianjie Luo
@contact: [email protected]
"""
def flat_list_of_lists(l):
"""flatten a list of lists [[1,2], [3,4]] to [1,2,3,4]"""
return [item for sublist in l for item in sublist]