Skip to content

Commit 43b025b

Browse files
committed
polish readme 💅
1 parent f6f7686 commit 43b025b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ All of these examples are from FreeCodeCamp's [course](https://www.freecodecamp.
2121

2222
### 1. Convert Celsius to Fahrenheit
2323

24-
### Difficulty: Beginner
24+
_Difficulty: Beginner_
2525

2626
The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.
2727

@@ -42,7 +42,7 @@ convertToF(30);
4242

4343
### 2. Reverse a String
4444

45-
### Difficulty: Beginner
45+
_Difficulty: Beginner_
4646

4747
Reverse the provided string.
4848

@@ -78,7 +78,7 @@ reverseString("hello");
7878

7979
### 3. Factorialize a Number
8080

81-
### Difficulty: Beginner
81+
_Difficulty: Beginner_
8282

8383
Return the factorial of the provided integer.
8484

@@ -120,7 +120,7 @@ factorialize(5);
120120

121121
### 4. Find the Longest Word in a String
122122

123-
### Difficulty: Beginner
123+
_Difficulty: Beginner_
124124

125125
Return the length of the longest word in the provided sentence.
126126

@@ -148,11 +148,11 @@ findLongestWordLength("The quick brown fox jumped over the lazy dog");
148148

149149
### 5. Return Largest Numbers in Arrays Passed
150150

151-
### Difficulty: Beginner
151+
_Difficulty: Beginner_
152152

153153
Return an array consisting of the largest number from each provided sub-array. For simplicity, the provided array will contain exactly 4 sub-arrays.
154154

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].
156156

157157
### Solution 1
158158

0 commit comments

Comments
 (0)