Skip to content

Instantly share code, notes, and snippets.

@xonev
Created September 20, 2012 14:01
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/3756113 to your computer and use it in GitHub Desktop.
Save xonev/3756113 to your computer and use it in GitHub Desktop.
Merge arrays warm-up
void Main()
{
int[] a = { 1, 5, 12 };
int[] b = { 2, 6, 9 };
Console.WriteLine(MergeArrays(a, b));
}
int[] MergeArrays(int[] a, int[] b)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment