Skip to content

Instantly share code, notes, and snippets.

@tmosest
Created February 7, 2017 21:40
Show Gist options
  • Save tmosest/4bf28822f3c055fa37ea95cb9cd5d5c0 to your computer and use it in GitHub Desktop.
Save tmosest/4bf28822f3c055fa37ea95cb9cd5d5c0 to your computer and use it in GitHub Desktop.
Space Complexity != Time Complexity
public static void createArray(int n)
{
int[] array = new int[n];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment