Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Js core 3/week 2/berhane #39

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
task questions completed
  • Loading branch information
bireworld committed Aug 18, 2020
commit 61d19447b78c60f9dbe93c5a84ce0de34ad14217
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,18 @@ After you've watched these videos I'd like you to answer these questions

<!-- Write your answer here -->

Effective way of problem solving skill is the most important quality of a programmer.

## 2. When trying to solve a challenge, what should you do first?

<!-- Write your answer here -->

try to understand what exactly the problem is. try to draw a diagram or try to explain the problem to someone else or talk to rubber duck as if considering it is someone else to better understand hat the problem is.

## 3. What should you do if you get stuck?

<!-- Write your answer here -->

If you’re stuck, you should reduce the problem to something simpler.
-Debug: Go step by step through your solution trying to find where you went wrong. Programmers call this debugging (in fact, this is all a debugger does).
-Reassess: Take a step back. Look at the problem from another perspective. Is there anything that can be abstracted to a more general approach?