Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Comments on how to use one list to find a similar list in another list python
Post
how to use one list to find a similar list in another list python
+0
−6
I want a way to make it so that I can use list B to find out if a copy of itself exists in list A.
listA = ['1', '1', '0', '1', '0', '1', 'down'] 2
['0', '0', '1', '1', '1', '1', 'up'] 2
['1', '0', '0', '1', '0', '1', 'up'] 1
['0', '0', '0', '1', '1', '0', 'up'] 2
['1', '1', '0', '0', '0', '0', 'up'] 1
['0', '0', '1', '1', '0', '1', 'down'] 1
['1', '0', '0', '0', '0', '1', 'down'] 1
['1', '1', '1', '1', '1', '1', 'up'] 1
listB = ['1', '1', '1', '1', '1', '1']
list A also shows how many times that particular list has appeared
So, I want a way to first find the repeating list of list B in list A, and secondly to select the one with the most repetitions in the case that there are multiple versions of it.
1 comment thread