id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

list_combine


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)

public List<Integer> list_combine(List<Integer> a, List<Integer> b) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy