Hit first real roadblock

Hi all! First let me say thanks to the wonderful community here and all the help I have gotten. Moving on, I think I am hitting my first real roadblock with coding. I generally find it fun and challenging, but now that I get deeper into it with challenges like (https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/nesting-for-loops) it’s not proving that easy…I guess that’s why developers are paid so much? :slight_smile:

I find web design pretty easy but the algorithms and data structures not so. Should I just grit my teeth and press on? I figure if I take it one step at a time I could handle it…? It doesn’t come that easily to me though.

Maybe I am just pushing myself too hard? I am generally a fast learner and I want to tackle a lot of stuff headon. I’ve had some coding experience here and there but nothing official.

you can totally keep going and will manage it!
apply Read-Search-Ask

  • READ carefully the challenge instructions, read carefully the description of the things you need to apply, in this or previous challenges
  • SEARCH further materials, google, find documentation websites, youtube, books (ex YDKJS, or Eloquent Javascript), stackoverflow…
  • ASK on the forum if you still need help, use the Ask for Help button and you will have your nice little post to get help by other users.

Try to not look at the answer itself! But if you do return to the challenge after a few days and try to complete it again without looking. Or try to complete it in a different way.

Problem Solving is a skill you acquire by using it, be patient with yourself, code every day (or as often as you can) and you will arrive there.

Hello Cyath,

I can understand your frustration, I started experiencing the same emotions when I went through javascript algorithm and data structures. ES6 was really difficult for me to grasp conceptually. Eventually, when I got to React.JS, I just mentally gave up and took a near 2 month break.

My realization:
Some of this stuff don’t make sense to you, until it does, and the moment it makes sense to you, it’s usually after a lot of time spent coding/reading tutorial/Googling. The more you go at it everyday, the faster that moment of realization will hit you.

Learning/Knowledge Acquisition is an uncontrollable process, with no certainty but only possibility, in which we try our best to put the odds in our favor, to learn. For coding, the way to put odds in your favor is by spending as much time as possible coding.

Are you being too hard on yourself?
I was, and I think you probably are too. A lot of this stuff don’t make sense to most people on first sight. However, the people who choose to be optimistic are usually the ones that keep putting regular amount of hours everyday, and eventually learning the concepts

What I’d tell myself if I could go back in time:
Just relax, and don’t quit, instead spend time on other projects that you are good with. Come back to the difficult problems later when you feel better. Break down the question into simpler parts, for example do not look at the problem as a whole, but as individual parts.

Example: Iterate through a 4x3 array with strings, objects, numbers, boolean values, and etc.
An easier approach to this would be, how would I use .map() to iterate through a 1-dimensional array, with only string messages inside like [“hello”, “coding”, “goodbye”].

This approach helps me to understand how to use unfamiliar tools, in a very easy way. When I feel like I understand how to use .map(), I started applying it to more difficult problems.

Conclusion:
Do not give up, but do feel proud about what you’re going through. Maintaining a positive attitude is much much much more important on the long run, in life, as comparing to learning data structures. You will encounter more topics that you don’t know, and the best thing you can train to do is, stay positive under uncertain/unfamiliar situation.

If change is the only constant in life, the best we can learn is coping with situation in which we have no 100% certainty, and learning to code is the perfect exercise I can think of!

Cheers,
Codey

2 Likes