Skip to content

Commit c460f95

Browse files
committed
solution method
1 parent 9517153 commit c460f95

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

JavaScript Outlines/javaScriptFoundation.js

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,33 @@ Solving Programming Problems
240240
241241
1. Read the problem at least 3 times.
242242
=====================================
243-
• To understand a problem, read through it at least 3 times.block
244-
• Try explaining the problem to someone else (or even communicate it on paper).block
245-
243+
1.1 • UNDERSTAND THE PROBLEM:
244+
To understand a problem, read through it at least 3 times.block
245+
1.2 • CREATE QUESTIONS ABOUT THE PROBLEM:
246+
Create a small list of questions about the problem.
247+
1.3 • EXPLAIN THE PROBLEM:
248+
Try explaining the problem to someone else (or even communicate it on paper).
249+
----------------------------------------------------------------------------------------
250+
251+
EXAMPLE PROBLEM:
252+
Create a simple function "selectEvenNumbers" that will take in an array of numbers
253+
and return and return an array "evenNumbers" of only even numbers. If there are no
254+
even numbers, return the empty array "evenNumbers".
255+
256+
QUESTIONS ABOUT THE PROBLEM:
257+
258+
259+
260+
261+
262+
263+
264+
265+
266+
----------------------------------------------------------------------------------------
267+
268+
269+
246270
247271
248272

0 commit comments

Comments
 (0)