about | help | code help+videos | done | prefs |
Given a two arrays of integers return a single array which consists of the 1st array in reverse order followed by the 2nd array in reverse order. reverseBoth([1, 2, 3], [7, 8, 9]) → [3, 2, 1, 9, 8, 7] reverseBoth([3, 2, 1], [9, 8, 7]) → [1, 2, 3, 7, 8, 9] reverseBoth([1, 2, 3, 4], [6, 7, 8, 9]) → [4, 3, 2, 1, 9, 8, 7, 6] ...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: 200
Copyright Nick Parlante 2017 - privacy