Questions to Ask Yourself When Stuck and/or Re-Implementing
#devstudy #algorithmns #datastructures #problemsolving
- Can you reverse the interpretation?
- Can you start the approach with the another input and/or direction?
- Can you use a set or a map to store something you're manually reaching for at a later point?
- Can you break down the problem more?
- Did you make a table of cases to fully visualize the pattern or did you trust your assumptions? Don't trust your assumptions.