Skip to content

Commit c6c00e5

Browse files
authored
Update 0901-online-stock-span.js
Updated peek method.
1 parent 5c95b83 commit c6c00e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/0901-online-stock-span.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class StockSpanner {
1111

1212
// Time O(1) | Space O(1)
1313
peek() {
14-
return this.stack[this.stack.length - 1];
14+
return this.isEmpty() ? null : this.stack[this.stack.length - 1];
1515
}
1616

1717
// Time O(1) | Space O(1)

0 commit comments

Comments
 (0)