Skip to content

Instantly share code, notes, and snippets.

@Xatenev
Created February 25, 2016 10:40
Show Gist options
  • Save Xatenev/e32754b3a2cb9ea71b31 to your computer and use it in GitHub Desktop.
Save Xatenev/e32754b3a2cb9ea71b31 to your computer and use it in GitHub Desktop.
Example Problem
Input
Array1 = [1,2]
Array2 = [3,4]
Output
Array3 = [1,2,3,4]
Code
Array3 = Array1.concat(Array2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment