How to Solve Programming Problem - liz-kavalski-401-advanced-javascript/seattle-javascript-401n13 GitHub Wiki
There are a five of steps to solve a programming problem. 1. Is to read the problem it self 3-4 time to completely understand the problem it self. 2. Write the code manual to understand the solution better and understand the steps need to solve the problem. For example step 1, step 2, step 3, etc. 3. Once done a person can look at the code and look at ways to make it more simple. 4. writing psuedo-code to know what the code would look along with comments to explain each line of code is doing. 5. Lastly converting the psuedo-code to real code. With these steps it should be easier to solve programming problem.