Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to find the maximum repeating number in array with Node.js

1 Answer

0 votes
function MaxRepertingElement(array) {
    const size = array.length;
    for (let i = 0; i < size; i++) {
        array[array[i] % size] += size;
        // array[i] % size = 0 3 4 8 3 8 2 3 9 4 4 4 7 7 7 4
    	// array = 16 3 20 56 83 8 2 51 41 20 4 4 7 7 7 4 
    }

    let max_element = -Number.MAX_VALUE;
    let repeating = 0;
        
    for (let i = 0; i < size; i++) {
        if (array[i] > max_element) {
            max_element = array[i];
            repeating = i;
        }
    }
    
    for (let i = 0; i < size; i++) {
        array[i] = array[i] % size;
        // array = 4 0 3 4 8 3 8 2 3 9 4 4 4 7 7 7 4 // return original values
    }
    

    
    return repeating;
}
        
const array = [0, 3, 4, 8, 3, 8, 2, 3, 9, 4, 4, 4, 7, 7, 7, 4];

console.log(MaxRepertingElement(array));



/*
run:

4

*/

 



answered Aug 28, 2022 by avibootz
...