Python | Consecutive Maximum Occurrence in list
Sometimes, while working with Python lists or in competitive programming setup, we can come across a subproblem in which we need to get an element which has the maximum consecutive occurrence. The knowledge of solution of it can be of great help and can be employed whenever required. Let’s discuss certain ways in which this task can be performed.
Method #1 : Using groupby() + max()
+ lambda
This task can be solved using combination of above functions. In this, we group each occurrence of numbers using groupby()
and get the max of it using max()
. The lambda function provide utility logic to perform this task.
# Python3 code to demonstrate working of # Consecutive Maximum Occurrence in list # using groupby() + max() + lambda from itertools import groupby # initializing list test_list = [ 1 , 1 , 1 , 2 , 2 , 4 , 2 , 2 , 5 , 5 , 5 , 5 ] # printing original list print ( "The original list is : " + str (test_list)) # Consecutive Maximum Occurrence in list # using groupby() + max() + lambda temp = groupby(test_list) res = max (temp, key = lambda sub: len ( list (sub[ 1 ]))) # printing result print ( "Maximum Consecutive Occurring number is : " + str (res[ 0 ])) |
The original list is : [1, 1, 1, 2, 2, 4, 2, 2, 5, 5, 5, 5] Maximum Consecutive Occurring number is : 5
Recommended Posts:
- Python | Last occurrence of some element in a list
- Python | Count occurrence of all elements of list in a tuple
- Python | Element Occurrence in dictionary of list values
- Python | Consecutive element maximum product
- Python | Consecutive elements pairing in list
- Python | Remove consecutive duplicates from list
- Python | Identical Consecutive Grouping in list
- Python | Consecutive elements grouping in list
- Python | Consecutive remaining elements in list
- Python | Check if list contains consecutive numbers
- Python | Average of each n-length consecutive segment in a list
- Python | Consecutive duplicates all elements deletion in list
- Python | Group consecutive list elements with tolerance
- Python | Pair the consecutive character strings in a list
- Python | Concatenate N consecutive elements in String list
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.