about | help | code help+videos | done | prefs |
Given an array of integers, return a string with all the even numbers connected with plus signs followed by the sum of these numbers in this exact format: 4+2+8=14. The array will contain at least two even numbers and the first element in the array will always be an even number. array1DSumEvens([4, 3, 1, 2, 8, 7]) → "4+2+8=14" array1DSumEvens([2, 6]) → "2+6=8" array1DSumEvens([10, 3, 5, 7, 2, 8]) → "10+2+8=20" ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy