Skip to content

Commit f824ac4

Browse files
Merge pull request amitshekhariitbhu#58 from ifprado/patch-1
Update README.md
2 parents 38d6632 + 840f185 commit f824ac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
> The level of questions asked on the topic of Data Structures And Algorithms totally depends on the company for which you are applying.
3737
3838
* Array
39-
- An Array consists of a group of elements of the same data type. It is stored continuously in memory and by using its' index, you can find the underlying data. Arrays can be one dimensional and multi-dimensional. One dimensional array is the simplest data structure, and also most commonly used. It is worth noting that in Java language multi-dimensional array are implemented as arrays of arrays. For example, `int[10][5]` is actually one array with its' cells pointing to ten 5-element arrays.
39+
- An Array consists of a group of elements of the same data type. It is stored contiguously in memory and by using its' index, you can find the underlying data. Arrays can be one dimensional and multi-dimensional. One dimensional array is the simplest data structure, and also most commonly used. It is worth noting that in Java language multi-dimensional array are implemented as arrays of arrays. For example, `int[10][5]` is actually one array with its' cells pointing to ten 5-element arrays.
4040

4141
| Algorithm | Average | Worst Case |
4242
|:---------:|:-------:|:----------:|

0 commit comments

Comments
 (0)