We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31f654 commit 179e4b8Copy full SHA for 179e4b8
exercises/26-two-dimensional-array/README.md
@@ -1,15 +1,15 @@
1
-# `26` Two dimensional array
+# `26` Two dimensional list
2
3
## 📝 Instructions:
4
5
-1. Write a function `two_dimensional_array`, which takes 2 digits (x, y) as input and generates a 2-dimensional array.
+1. Write a function `two_dimensional_list`, which takes 2 digits (x, y) as input and generates a 2-dimensional list.
6
7
-2. The element value in the i-th row and j-th column of the array should be i*j (the index values).
+2. The element value in the i-th row and j-th column of the list should be i*j (the index values).
8
9
## 📎 Example input:
10
11
```py
12
-two_dimensional_array(3,5)
+two_dimensional_list(3,5)
13
```
14
15
## 📎 Example output:
0 commit comments