about | help | code help+videos | done | prefs |
Given two lists of integers "a" and "b", combine all of their numbers into a new list where all of the numbers from a appear before all of the numbers from b. list_combine([1, 2, 3], [4, 5, 6]) → [1, 2, 3, 4, 5, 6] list_combine([1, 2], [3, 4]) → [1, 2, 3, 4] list_combine([1], [1, 1, 1]) → [1, 1, 1, 1] ...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