about | help | code help+videos | done | prefs |
Given 3 int arrays, a and b, each length 5, return a new array length 3 containing their middle elements. array1DMidElements([1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [0, 3, 5, 7, 9]) → [3, 8, 5] array1DMidElements([1, 1, 1, 1, 1], [1, 1, 1, 1, 1], [1, 1, 1, 1, 1]) → [1, 1, 1] array1DMidElements([3, 4, 5, 6, 7], [0, 3, 2, 5, 6], [10, 9, 8, 7, 6]) → [5, 2, 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
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy