From 9ac2c1aa3b5dc8d0193946024fd0aca5428d1695 Mon Sep 17 00:00:00 2001 From: csvlad <52933579+csvlad@users.noreply.github.com> Date: Tue, 2 Sep 2025 21:26:21 -0700 Subject: [PATCH] fix hint typo --- hints/minimum-stack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.