Common elements between two lists with no duplicates

后端 未结 5 1375
时光说笑
时光说笑 2021-01-16 05:19

Problem is this, take two lists, say for example these two:

a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
         


        
5条回答
  •  [愿得一人]
    2021-01-16 05:37

    using list comprehensions, l think it had be short and simple if it was implemented as following

    a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
    b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
    [i for i in a and b if i in a and b]
    

    result:

    [1, 2, 3, 5, 8, 13]
    

提交回复
热议问题