about | help | code help+videos | done | prefs |
Given two arrays startNums and endNums with varying lengths, create and return a new array containing all the elements of startNums in order, followed by all the elements of endNums in order. apcsaArraysJoinFirstLast([0, 1], [2, 3]) → [0, 1, 2, 3] apcsaArraysJoinFirstLast([1, 2, 3], []) → [1, 2, 3] apcsaArraysJoinFirstLast([], [4, 5, 6]) → [4, 5, 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: 230
Copyright Nick Parlante 2017 - privacy