We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some function returns null:
null
console.log(bst.lowerBound(60).getKey()); // 60 console.log(bst.lowerBound(60, false).getKey()); // 50 console.log(bst.lowerBound(10)); // null
However, this is not reflected in the TS type definition file
binary-search-tree/src/binarySearchTree.d.ts
Line 9 in 74e9a83
The text was updated successfully, but these errors were encountered:
Thanks for reporting @banacorn I I'll fix this soon.
Sorry, something went wrong.
eyas-ranjous
Successfully merging a pull request may close this issue.
Some function returns
null
:However, this is not reflected in the TS type definition file
binary-search-tree/src/binarySearchTree.d.ts
Line 9 in 74e9a83
The text was updated successfully, but these errors were encountered: