Created
January 11, 2021 10:40
-
-
Save apow2/2957e30bdbb06969dc5491c2f80a6bc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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