Fixed typo

This commit is contained in:
Ming Yang
2016-09-04 00:44:45 -04:00
parent 08ae1ab253
commit 07835c7b66

View File

@ -52,7 +52,7 @@
"id": "56b15f15632298c12f31517a", "id": "56b15f15632298c12f31517a",
"title": "Big O Notation: A Few Examples", "title": "Big O Notation: A Few Examples",
"description": [ "description": [
"Time complexity is commonly estimated by counting the number of elementary operations (elementary operation = an operation that takes a fixed amount of time to preform) performed in the algorithm.", "Time complexity is commonly estimated by counting the number of elementary operations (elementary operation = an operation that takes a fixed amount of time to perform) performed in the algorithm.",
"Time complexity is classified by the nature of the function O(n). O represents the function, and (n) represents the number of elements to be acted on.", "Time complexity is classified by the nature of the function O(n). O represents the function, and (n) represents the number of elements to be acted on.",
"Worst-case time complexity, the longest it could possibly take with any valid input, is the most common way to express time complexity.", "Worst-case time complexity, the longest it could possibly take with any valid input, is the most common way to express time complexity.",
"When you discuss Big-O notation, that is generally referring to the worst case scenario.", "When you discuss Big-O notation, that is generally referring to the worst case scenario.",