We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d581481 commit ed66c4dCopy full SHA for ed66c4d
c/0211-design-add-and-search-words-data-structure.c
@@ -63,7 +63,7 @@ void wordDictionaryFreeR(WordDictionary* dict) {
63
int i;
64
for (i = 0; i < 26; i++) {
65
if (dict->c[i]) {
66
- return wordDictionaryFreeR(dict->c[i]);
+ wordDictionaryFreeR(dict->c[i]);
67
}
68
69
free(dict);
0 commit comments