Challenge 1 and 2: Implement Insert
and Search
functions for trie
#53
thomasy314
started this conversation in
General
Replies: 1 comment
-
I personally prefer an iterative approach over recursion. I chose to implement the initial solution recursively to highlight the differences and help others appreciate how straightforward it is to create and understand loop-based implementations compared to recursive ones. I've also included a loop based implementation in a commit yesterday. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I decided to go with an iterative approach as it seemed better for:
Happy to hear any feedback or thoughts on my implementation :)
Beta Was this translation helpful? Give feedback.
All reactions