We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c95b83 commit c6c00e5Copy full SHA for c6c00e5
javascript/0901-online-stock-span.js
@@ -11,7 +11,7 @@ class StockSpanner {
11
12
// Time O(1) | Space O(1)
13
peek() {
14
- return this.stack[this.stack.length - 1];
+ return this.isEmpty() ? null : this.stack[this.stack.length - 1];
15
}
16
17
0 commit comments