a1 = ['arp', 'bull', 'mice']
a2 = ["lively", "alive", "harp", "sharp", "armstrong"]
我需要它返回:返回數組排序在字典順序蟒蛇
['arp']
我的代碼是:
def in_array(array1, array2):
x = array1
return sorted(x)
其適用於:
a1 = ["live", "arp", "strong"]
a2 = ["lively", "alive", "harp", "sharp", "armstrong"]
r = ['arp', 'live', 'strong']
怎麼辦我通過一個數組進行排序,並只匹配那些已排序的元素是a2的子串嗎?
你想*排序*?或*過濾器*? –
我想排序並過濾 –