Skip to content

Commit 996b009

Browse files
committed
Fix exercise wording again
1 parent 2cacb71 commit 996b009

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

algorithms/letter_count_exercise.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h3>Write a function that counts how many of each English letters appears in a s
1212
<li>Pair up!</li>
1313
<li>Write pseudocode for this problem!</li>
1414
<li>Now write the code for this algorithm. You can use <a href="http://repl.it">repl.it</a> or some other environment to run and test code.</li>
15-
<li>The function you write should accept a string as its parameter. The function print out a letter count for each letter.</li>
15+
<li>The function you write should accept a string as its parameter. The function should print out a letter count for each letter.</li>
1616
</ul>
1717
<br>
1818
Stumped? <a onclick="showHints()">Click here</a> for some hints

algorithms/recursion_exercise.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h2>Adding up all numbers in a list</h2>
1111
<li>Pair up!</li>
1212
<li>Write pseudocode for this problem!</li>
1313
<li>Now write the code for this algorithm. You can use <a href="http://repl.it">repl.it</a> or some other environment to run and test code.</li>
14-
<li>The function you write should accept as parameters an array. The function should return the total of all the integers in the array.</li>
14+
<li>The function you write should accept an array as its parameter. The function should return the total value of all the integers in the array.</li>
1515
</ul>
1616
<br>
1717
Stumped? <a onclick="showHints()">Click here</a> for some hints

0 commit comments

Comments
 (0)