Skip to content

Instantly share code, notes, and snippets.

@xonev
Created September 20, 2012 13:37
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 xonev/3755991 to your computer and use it in GitHub Desktop.
Save xonev/3755991 to your computer and use it in GitHub Desktop.
Coding Challenge -- Merge arrays
void Main()
{
int[] resizedArray = { 1, 4, 7, 0, 0, 0 };
int[] mergeArray = { 2, 3, 5 };
MergeIntoFirstArray(resizedArray, mergeArray);
Console.WriteLine(resizedArray);
}
void MergeIntoFirstArray(int[] firstArray, int[] mergeArray)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment