diff --git a/hints/minimum-stack.md b/hints/minimum-stack.md index 8a7776224..121237d7a 100644 --- a/hints/minimum-stack.md +++ b/hints/minimum-stack.md @@ -10,7 +10,7 @@
Hint 1

- A brute force solution would be to always check for the minimum element in the stack for the getMin() function call. This would be an O(n) appraoch. Can you think of a better way? Maybe O(n) extra space to store some information. + A brute force solution would be to always check for the minimum element in the stack for the getMin() function call. This would be an O(n) approach. Can you think of a better way? Maybe O(n) extra space to store some information.