Open In App

Python – Sort by Maximum digit in Element

Last Updated : 15 May, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Given a List of Elements, sort by the maximum digit of the element present in the List.

Input : test_list = [234, 92, 8, 721] 
Output : [234, 721, 8, 92] 
Explanation : 4 < 7 < 8 < 9, sorted by maximum digits.

Input : test_list = [92, 8, 721] 
Output : [721, 8, 92] 
Explanation : 7 < 8 < 9, sorted by maximum digits. 

Method #1 : Using max() + sort()

In this, we perform task of inplace sort using sort() and maximum element is extracted using max().

Python3




# Python3 code to demonstrate working of
# Sort by Maximum digit in Element
# Using max() + sort()
 
def max_dig(ele):
     
    # getting maximum digit by magnitude
    return max(str(ele))
 
# initializing list
test_list = [234, 92, 15, 8, 721]
 
# printing original list
print("The original list is : " + str(test_list))
 
# calling sort fnc. to sort with key
test_list.sort(key = max_dig)
 
# printing result
print("Sorted List : " + str(test_list))


Output

The original list is : [234, 92, 15, 8, 721]
Sorted List : [234, 15, 721, 8, 92]

Time Complexity: O(nlogn+m)
Auxiliary Space: O(1)

Method #2  : Using sorted() + lambda + max()

In this, we use sorted() perform non-inplace sort, and avoid usage of external function using lambda function to get maximum digit.

Python3




# Python3 code to demonstrate working of
# Sort by Maximum digit in Element
# Using sorted() + lambda + max()
 
# initializing list
test_list = [234, 92, 15, 8, 721]
 
# printing original list
print("The original list is : " + str(test_list))
 
# lambda fnc. used to get maximum Element logic
res = sorted(test_list, key = lambda ele : max(str(ele)))
 
# printing result
print("Sorted List " + str(res))


Output

The original list is : [234, 92, 15, 8, 721]
Sorted List [234, 15, 721, 8, 92]

Time Complexity: O(n*nlogn) where n is the number of elements in the list “test_list”.  sorted() + lambda + max() performs n*nlogn number of operations.
Auxiliary Space: O(1), no extra space is required 

Method #3  : Using a list comprehension with sorted():

1.Define the list of integers to be sorted.
2.Define a key function that takes an integer element and returns the maximum digit in the element.
3.Apply the sorted() function to the list, using the key function to determine the sorting order.
4.Print the resulting sorted list.

Python3




# initializing list
test_list = [234, 92, 15, 8, 721]
# printing original list
print("The original list is : " + str(test_list))
 
result = sorted(test_list, key=lambda x: max([int(d) for d in str(x)]))
 
print(result)
 
#This code is contributed by Jyothi pinjala


Output

The original list is : [234, 92, 15, 8, 721]
[234, 15, 721, 8, 92]

Time complexity: O(d n log n), where d is the maximum number of digits in the list and n is the length of the list. In this case, the maximum number of digits is 3, since the maximum element is 721, which has 3 digits. Therefore, the time complexity is O(3 n log n), which simplifies to O(n log n).
Auxiliary space: O(n), since the key function creates a list of digits for each element and the sorted() function creates a new sorted list.

Method #5: Using a loop and a dictionary

Iterate through the list of numbers and for each number, you can extract the maximum digit and use it as a key to store the number in a dictionary. Finally, you can extract the numbers from the dictionary in ascending order of the maximum digit.

Step-by-step approach:

  • Define an empty dictionary to store the numbers.
  • Iterate through the list of numbers.
  • For each number, convert it to a string and extract the maximum digit using the max() function.
  • Check if the maximum digit already exists as a key in the dictionary. If it does, append the number to the list of numbers already stored under that key. If it doesn’t,
  • Create a new key with the maximum digit and store the number as a list under that key.
  • Extract the keys of the dictionary in ascending order.
  • Iterate through the keys and extract the numbers stored under each key in the order they were added to the dictionary.
  • Return the sorted list of numbers.

Python3




# Python3 code to demonstrate working of
# Sort by Maximum digit in Element
# Using a loop and a dictionary
 
# initializing list
test_list = [234, 92, 15, 8, 721]
 
# printing original list
print("The original list is : " + str(test_list))
 
# using loop and dictionary
num_dict = {}
for num in test_list:
    max_digit = max(str(num))
    if max_digit in num_dict:
        num_dict[max_digit].append(num)
    else:
        num_dict[max_digit] = [num]
 
# extracting numbers in ascending order of max digit
res = []
for key in sorted(num_dict):
    res.extend(sorted(num_dict[key]))
 
# printing result
print("Sorted List " + str(res))


Output

The original list is : [234, 92, 15, 8, 721]
Sorted List [234, 15, 721, 8, 92]

Time complexity: O(n log n), where n is the length of the list. 
Auxiliary space: O(n), where n is the length of the list. 

Method #7: Using itertools.groupby() and lambda function

  • Import the itertools module.
  • Define a lambda function to convert an integer to a list of its digits.
  • Initialize a sorted() function that takes test_list as input and a key parameter that is set to the lambda function, which will sort the list by the maximum digit in each number.
  • Use itertools.groupby() to group the sorted_list by their maximum digit.
  • Extract the elements from each group and append them to a new list.
  • Print the sorted list.

Python3




# Python3 code to demonstrate working of
# Sort by Maximum digit in Element
# Using itertools.groupby() and lambda function
 
import itertools
 
# initializing list
test_list = [234, 92, 15, 8, 721]
 
# printing original list
print("The original list is : " + str(test_list))
 
# defining lambda function to convert number to list of digits
num_to_digits = lambda num: [int(digit) for digit in str(num)]
 
# sorting list by maximum digit in each number
sorted_list = sorted(test_list, key=lambda num: max(num_to_digits(num)))
 
# grouping sorted list by maximum digit
sorted_groups = [list(group) for key, group in itertools.groupby(sorted_list, key=lambda num: max(num_to_digits(num)))]
 
# flattening the groups into a single sorted list
sorted_result = [num for group in sorted_groups for num in sorted(group)]
 
# printing result
print("Sorted List " + str(sorted_result))


Output

The original list is : [234, 92, 15, 8, 721]
Sorted List [234, 15, 721, 8, 92]

Time Complexity: O(n log n), where n is the length of test_list.
Auxiliary Space: O(n), where n is the length of test_list, due to the creation of the sorted_list and sorted_groups variables.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads