about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy