Edit - One area I really struggle with is recursion for example. I know I need to separate areas of complexity but really struggle with it.
Resources for improving logic solving skills?
1–5 of 5 posts
I'm looking for some resource suggestions to help improve my approach to solving difficult logic problems. I feel like my approach needs to be improved. I'm someone who didn't come up with a formal CS background. I would appreciate any mentoring advice. Thanks
Re: Resources for improving logic solving skills?
#2What books about such topic have you read so far?
Re: Resources for improving logic solving skills?
#3What books about such topic have you read so far?
To be honest - none. I'm going to assume there are many out there and was hoping to discover what people think are the best. I would prefer to focus on the top 3 that are most beneficial.
Re: Resources for improving logic solving skills?
#4related "Ask HN: Books that teach you logic building skills" https://news.ycombinator.com/item?id=28500951
Re: Resources for improving logic solving skills?
#5What books about such topic have you read so far?
To be honest - none. I'm going to assume there are many out there and was hoping to discover what people think are the best. I would prefer to focus on the top 3 that are most beneficial.
I've got at home "Introduction to Algorithms - Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein"
It's chunky and very academic book. I read it mostly when I have to interview.
From my observation, I improve at algorithmic problem-solving every time I study the fundamentals:
- Time complexity / Space complexity: In order to measure the efficiency of an algorithm
- Sort and Search algorithms
- Data structures
Over time for lack of practice I get less good at it, but because I've got the resources, I can always "get in shape" so to speak.