Skip to content

Instantly share code, notes, and snippets.

@apow2
Created January 11, 2021 10:40
Show Gist options
  • Select an option

  • Save apow2/2957e30bdbb06969dc5491c2f80a6bc5 to your computer and use it in GitHub Desktop.

Select an option

Save apow2/2957e30bdbb06969dc5491c2f80a6bc5 to your computer and use it in GitHub Desktop.
a = rand(500, 500)
b = rand(500, 500)
c = rand(500, 1)
a*b*c % O(N^3) time complexity
a*(b*c) % O(N^2) time complexity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment