about | help | code help+videos | done | prefs |
Given two integer arrays "a" and "b", return a new array that contains both of their contents where elements from "a" are at the beginning and elements from "b" are at the end. array_combine([1, 2], [3, 4]) → [1, 2, 3, 4] array_combine([4, 3], [2, 1]) → [4, 3, 2, 1] array_combine([1], [2, 3, 4]) → [1, 2, 3, 4] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy