Skip to content

Instantly share code, notes, and snippets.

@shtrom
Created March 21, 2019 06:33
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 shtrom/e70e8c2a0f2de19314aee7a5e51e5489 to your computer and use it in GitHub Desktop.
Save shtrom/e70e8c2a0f2de19314aee7a5e51e5489 to your computer and use it in GitHub Desktop.
int doSomething(int n)
{
for (int i = 1; i <= n; i++)
{
for (int j = 1; j < n; j += i)
{
// Some O(1) task
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment