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
airbnb/src/main/java/k_edit_distance/KEditDistance.java
Line 86 in 341c0e4
When s.length() == 0, root.isLeaf should be marked as True. Otherwise, when input list contains "", it will go wrong.
s.length() == 0
root.isLeaf
True
""
The text was updated successfully, but these errors were encountered:
No branches or pull requests
airbnb/src/main/java/k_edit_distance/KEditDistance.java
Line 86 in 341c0e4
When
s.length() == 0
,root.isLeaf
should be marked asTrue
. Otherwise, when input list contains""
, it will go wrong.The text was updated successfully, but these errors were encountered: