Correcting grammatical errors (#33530)

* correcting grammatical mistakes in dynamic programming section
This commit is contained in:
Ankit Mathur
2019-04-13 22:35:21 +05:30
committed by The Coding Aviator
parent f8483b0ca7
commit 1c5e0c93b3

View File

@ -44,7 +44,7 @@ def fib(n)
return lookup[n]
}
```
Caching computed solutions in a lookup table, and query it before go recursion will let the program have a running time of O(N).
Caching computed solutions in a lookup table, and querying it before going for recursion will let the program have a running time of O(N).
#### More Information: