You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(shouldDeleteCurrentNode){
current.children.remove(word.charAt(index));
//return true if no mappings are left in the map.
return current.children.size() == 0 && !current.isEndOfWord;
}
Steps:
Add "Aamir"
Add "Aami"
delete "Aamir"
As per the current code this will also delete "Aami"
The text was updated successfully, but these errors were encountered:
interview/src/com/interview/suffixprefix/Trie.java
Line 143 in 94be5de
Steps:
Add "Aamir"
Add "Aami"
delete "Aamir"
As per the current code this will also delete "Aami"
The text was updated successfully, but these errors were encountered: