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

 

gaurav.gupta@mq.edu.au arraylists > frequencyTable
prev  |  next  |  chance

Define a function that when passed an ArrayList of Integer objects, returns an ArrayList containing the frequency table. That is a list containing tuples, the first value being the item, and the second its count in the passed list. See the input-output mappings to understand this further.


frequencyTable([10, 70, 20, 90, 70, 70, 20, 70, 20, 20, 20, 90, 20]) → [[10, 1], [70, 4], [20, 6], [90, 2]]
frequencyTable([10, 10, 10, 10, 10]) → [[10, 5]]
frequencyTable([]) → []

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

ArrayList frequencyTable(ArrayList<Integer> list) { }

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

Difficulty: 5 Post-solution available

Copyright Nick Parlante 2017 - privacy