Created
June 21, 2017 22:49
-
-
Save jethrolarson/65732a8ba9b4f620b68930923ec3c48a to your computer and use it in GitHub Desktop.
Big O notation for story estimation
This file contains 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
O(1) - Trivial, we've done something almost exactly like this and it wont take long to complete at all | |
O(log n) - Need to add a small capability then it's copy-pasta | |
O(n) - Simple, It's like things we've done before. No refactoring or architectural changes needed. | |
O(n^2) - Going to need to rework some things and watch out for regressions | |
O(n!) - Major rework needed, lots of risk | |
O(MG) - This is so complex or ill-defined that it may never complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment