Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 105142d

Browse files
committed
173 added
1 parent f46f0dc commit 105142d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Algorithms/0173.binary-search-tree-iterator/binary-search-tree-iterator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ func Constructor(root *TreeNode) BSTIterator {
2222
return BSTIterator{}
2323
}
2424

25-
// Next returns the next smallest number */
25+
// Next returns the next smallest number
2626
func (it *BSTIterator) Next() int {
2727

2828
return 0
2929
}
3030

31-
// HasNext returns whether we have a next smallest number */
31+
// HasNext returns whether we have a next smallest number
3232
func (it *BSTIterator) HasNext() bool {
3333

3434
return false

0 commit comments

Comments
 (0)