Skip to content

Instantly share code, notes, and snippets.

@gogeta95
Created March 3, 2018 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogeta95/8645ce616729b9eaef1c2d03393ef6ad to your computer and use it in GitHub Desktop.
Save gogeta95/8645ce616729b9eaef1c2d03393ef6ad to your computer and use it in GitHub Desktop.
public static void copyNumbers(int a1[], int a2[]) {
for (int i = 0; i < a1.length; i++) {
a2[i] = a1[i];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment