about | help | code help+videos | done | prefs |
Given an array of ints length 3, figure out which is larger, the first or last element in the array, and set all the other elements to be that value. Return the changed array. max_end3([1, 2, 3]) → [3, 3, 3] max_end3([11, 5, 9]) → [11, 11, 11] max_end3([2, 11, 3]) → [3, 3, 3] ...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: 124.0 Post-solution available
Copyright Nick Parlante 2017 - privacy