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.
2 parents c24a474 + ed66c4d commit 1349c24Copy full SHA for 1349c24
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