@@ -21,7 +21,7 @@ All of these examples are from FreeCodeCamp's [course](https://www.freecodecamp.
21
21
22
22
### 1. Convert Celsius to Fahrenheit
23
23
24
- ### Difficulty: Beginner
24
+ _ Difficulty: Beginner _
25
25
26
26
The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.
27
27
@@ -42,7 +42,7 @@ convertToF(30);
42
42
43
43
### 2. Reverse a String
44
44
45
- ### Difficulty: Beginner
45
+ _ Difficulty: Beginner _
46
46
47
47
Reverse the provided string.
48
48
@@ -78,7 +78,7 @@ reverseString("hello");
78
78
79
79
### 3. Factorialize a Number
80
80
81
- ### Difficulty: Beginner
81
+ _ Difficulty: Beginner _
82
82
83
83
Return the factorial of the provided integer.
84
84
@@ -120,7 +120,7 @@ factorialize(5);
120
120
121
121
### 4. Find the Longest Word in a String
122
122
123
- ### Difficulty: Beginner
123
+ _ Difficulty: Beginner _
124
124
125
125
Return the length of the longest word in the provided sentence.
126
126
@@ -148,11 +148,11 @@ findLongestWordLength("The quick brown fox jumped over the lazy dog");
148
148
149
149
### 5. Return Largest Numbers in Arrays Passed
150
150
151
- ### Difficulty: Beginner
151
+ _ Difficulty: Beginner _
152
152
153
153
Return an array consisting of the largest number from each provided sub-array. For simplicity, the provided array will contain exactly 4 sub-arrays.
154
154
155
- ## Remember, you can iterate through an array with a simple for loop, and access each member with array syntax arr[ i] .
155
+ Remember, you can iterate through an array with a simple for loop, and access each member with array syntax arr[ i] .
156
156
157
157
### Solution 1
158
158
0 commit comments