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

 

tlsmith2@wsfcs.k12.nc.us > distinctive
prev  |  next  |  chance

Given two arrays, A and B, of non-negative int scores. A "distinctive" score is one which is a multiple of 10, such as 40 or 90. Return the sum of the largest distinctive score in A and the largest distinctive score in B. To practice decomposition, write a separate helper method which finds the largest distinctive score in an array. Write your helper method after your distinctive() method in the JavaBat text area.


distinctive([12, 10, 4], [2, 20, 30]) → 40
distinctive([20, 10, 4], [2, 20, 10]) → 40
distinctive([12, 11, 4], [2, 20, 31]) → 20

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

public int distinctive(int[] a, int[] b) { }

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: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy