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

 

tmhscs@gmail.com logic > logic_sumNoDuplicatesN
prev  |  next  |  chance

Given N integer values in an array called list, return their sum. However, do not count any value towards the total if it is not unique. Unique means that no other value in the array has the same value.


logic_sumNoDuplicatesN([1, 2, 3, 4, 5]) → 15
logic_sumNoDuplicatesN([1, 2, 3, 1, 2]) → 3
logic_sumNoDuplicatesN([3, 2, 1, 2, 4]) → 8

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

public int logic_sumNoDuplicatesN(int[] 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

Post-solution available

Copyright Nick Parlante 2017 - privacy