Description
The file others/Implementing_auto_completing_features_using_trie.java violates standard Java naming conventions: class names should be UpperCamelCase, not a long snake_case sentence.
Proposed change
- Rename the class (and file) to something concise and conventional, e.g.
TrieAutocomplete.
- Move it to a package that fits the algorithm —
datastructures/trees/ (it is trie-based) or strings/.
- Update the matching test class accordingly.
Good first issue — small, self-contained, no algorithm changes.
Description
The file
others/Implementing_auto_completing_features_using_trie.javaviolates standard Java naming conventions: class names should beUpperCamelCase, not a longsnake_casesentence.Proposed change
TrieAutocomplete.datastructures/trees/(it is trie-based) orstrings/.Good first issue — small, self-contained, no algorithm changes.