Skip to content

Commit ae81b34

Browse files
authored
Add empty constructor to PatriciaTrie
1 parent 0cdf916 commit ae81b34

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/thealgorithms/datastructures/tries/PatriciaTrie.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ private static final class Node<V> {
3333

3434
/** Creates an empty Patricia trie. */
3535
public PatriciaTrie() {
36+
3637
+ }
3738
/**
3839
* Inserts or updates the value associated with {@code key}.

0 commit comments

Comments
 (0)