Skip to content

Commit de6499f

Browse files
committed
add minor changes
1 parent 0c285f9 commit de6499f

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
<p align="center"><img src="https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png"/></p>
1+
![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)
22

3-
# JS | Functions & Arrays
3+
# LAB | JS Functions & Arrays
44

5-
## Learning Goals
6-
7-
In this exercise you will apply:
8-
9-
- Array iteration techniques
10-
- Using functions to manipulate and transform arrays
115

126
## Introduction
137

@@ -228,14 +222,14 @@ const words = [
228222
What is the greatest product of four adjacent numbers? We consider adjacent any four numbers that are next to each other in horizontal, vertical o diagonal.
229223

230224
For example, if we have a 5x5 Matrix like:
231-
225+
```bash
232226
[ 1, 2, 3, 4, 5]
233227
[ 1, 20, 3, 4, 5]
234228
[ 1, 20, 3, 4, 5]
235229
[ 1, 20, 3, 4, 5]
236230
[ 1, 4, 3, 4, 5]
237-
238-
The greatest product will be the 20x20x20x4 = 32,000;
231+
```
232+
The greatest product will be the `20`x`20`x`20`x`4` = `32000`;
239233

240234
Declare a function named `greatestProduct` to find it in the 20×20 grid below!
241235

0 commit comments

Comments
 (0)