Skip to content

Commit 179e4b8

Browse files
authored
Update README.md
1 parent e31f654 commit 179e4b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/26-two-dimensional-array/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# `26` Two dimensional array
1+
# `26` Two dimensional list
22

33
## 📝 Instructions:
44

5-
1. Write a function `two_dimensional_array`, which takes 2 digits (x, y) as input and generates a 2-dimensional array.
5+
1. Write a function `two_dimensional_list`, which takes 2 digits (x, y) as input and generates a 2-dimensional list.
66

7-
2. The element value in the i-th row and j-th column of the array should be i*j (the index values).
7+
2. The element value in the i-th row and j-th column of the list should be i*j (the index values).
88

99
## 📎 Example input:
1010

1111
```py
12-
two_dimensional_array(3,5)
12+
two_dimensional_list(3,5)
1313
```
1414

1515
## 📎 Example output:

0 commit comments

Comments
 (0)