id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

array_mode


Given an integer array, return the mode. The mode is the number that occurs most frequently in the array.


array_mode([1, 1, 2, 2, 2]) → 2
array_mode([1, 2, 3, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 1, 1, 1]) → 1
array_mode([1, 1, 1, 2, 2]) → 1

...Save, Compile, Run (ctrl-enter)

public int array_mode(int[] data) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy