VOOZH about

URL: https://www.geeksforgeeks.org/dsa/find-largest-multiple-3-array-digits-set-2-time-o1-space/

⇱ Find the largest multiple of 3 from array of digits | Set 2 (In O(n) time and O(1) space) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Find the largest multiple of 3 from array of digits | Set 2 (In O(n) time and O(1) space)

Last Updated : 23 Jul, 2025

Given an array of digits (contain elements from 0 to 9). Find the largest number that can be made from some or all digits of array and is divisible by 3. The same element may appear multiple times in the array, but each element in the array may only be used once. 
Examples:

Input : arr[] = {5, 4, 3, 1, 1} 
Output : 4311

Input : Arr[] = {5, 5, 5, 7}
Output : 555


Asked In : Google Interview


We have discussed a queue based solution. Both solutions (discussed in previous and this posts) are based on the fact that a number is divisible by 3 if and only if sum of digits of the number is divisible by 3.
For example, let us consider 555, it is divisible by 3 because sum of digits is 5 + 5 + 5 = 15, which is divisible by 3. If a sum of digits is not divisible by 3 then the remainder should be either 1 or 2. 
If we get remainder either '1' or '2', we have to remove maximum two digits to make a number that is divisible by 3: 

  1. If remainder is '1' : We have to remove single digit that have remainder '1' or we have to remove two digit that have remainder '2' ( 2 + 2 => 4 % 3 => '1')
  2. If remainder is '2' : .We have to remove single digit that have remainder '2' or we have to remove two digit that have remainder '1' ( 1 + 1 => 2 % 3 => 2 ).


Examples : 

Input : arr[] = 5, 5, 5, 7 
Sum of digits = 5 + 5 + 5 + 7 = 22
Remainder = 22 % 3 = 1
We remove smallest single digit that
has remainder '1'. We remove 7 % 3 = 1
So largest number divisible by 3 is : 555

Let's take an another example :
Input : arr[] = 4 , 4 , 1 , 1 , 1 , 3
Sum of digits = 4 + 4 + 1 + 1 + 1 + 3 = 14
Reminder = 14 % 3 = 2
We have to remove the smallest digit that
has remainder ' 2 ' or two digits that have
remainder '1'. Here there is no digit with
reminder '2', so we have to remove two smallest
digits that have remainder '1'. The digits are :
1, 1. So largest number divisible by 3 is 4 4 3 1


Below are implementation of above idea.

Output:

4431


Time Complexity : O(n) 
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Comment
Article Tags: