Skip to content

Commit c0eb008

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

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You are given a variable celsius representing a temperature in Celsius. Use the
2929

3030
---
3131

32-
### Solution
32+
#### Solution
3333

3434
```js
3535
function convertToF(celsius) {
@@ -52,7 +52,7 @@ Your result must be a string.
5252

5353
---
5454

55-
### Solution 1
55+
#### Solution 1
5656

5757
```js
5858
function reverseString(str) {
@@ -62,7 +62,7 @@ function reverseString(str) {
6262
reverseString("hello");
6363
```
6464

65-
### Solution 2
65+
#### Solution 2
6666

6767
```js
6868
function reverseString(str) {
@@ -92,7 +92,7 @@ Only integers greater than or equal to zero will be supplied to the function.
9292

9393
---
9494

95-
### Solution 1
95+
#### Solution 1
9696

9797
```js
9898
function factorialize(num) {
@@ -104,7 +104,7 @@ function factorialize(num) {
104104
factorialize(5);
105105
```
106106

107-
### Solution 2
107+
#### Solution 2
108108

109109
```js
110110
function factorialize(num) {
@@ -128,7 +128,7 @@ Your response should be a number.
128128

129129
---
130130

131-
### Solution
131+
#### Solution
132132

133133
```js
134134
function findLongestWordLength(str) {
@@ -154,7 +154,7 @@ Return an array consisting of the largest number from each provided sub-array. F
154154

155155
Remember, you can iterate through an array with a simple for loop, and access each member with array syntax arr[i].
156156

157-
### Solution 1
157+
#### Solution 1
158158

159159
```js
160160
function largestOfFour(arr) {
@@ -179,7 +179,7 @@ largestOfFour([
179179
]);
180180
```
181181

182-
### Solution 2
182+
#### Solution 2
183183

184184
```js
185185
function largestOfFour(arr) {

0 commit comments

Comments
 (0)