Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
6adc171
Initial structure for multiDimensional Array
JeanPierreMR Apr 6, 2020
0147664
git ignore update
JeanPierreMR Apr 7, 2020
41e4126
Update arrays.py
JeanPierreMR Apr 9, 2020
6a51719
Changed MultiDimensionalArray
JeanPierreMR Apr 9, 2020
bf55961
Added Multi-dimensional array
JeanPierreMR Apr 9, 2020
c736ee5
Updated arrays.py
JeanPierreMR Apr 9, 2020
65365ec
Update test_arrays.py
JeanPierreMR Apr 13, 2020
ed73085
Update arrays.py
JeanPierreMR Apr 15, 2020
c84fd4d
Update test_arrays.py
JeanPierreMR Apr 15, 2020
96fe82f
Update arrays.py
JeanPierreMR Apr 15, 2020
464c05f
Merge remote-tracking branch 'upstream/master'
JeanPierreMR Apr 15, 2020
7ea7a43
Update arrays.py
JeanPierreMR Apr 15, 2020
d35900f
Adding Multidimensional array
JeanPierreMR Apr 17, 2020
a8b3340
Update Multidimensional aray
JeanPierreMR Apr 17, 2020
5507c58
Update arrays.py
JeanPierreMR Apr 17, 2020
ecd5d20
Merge branch 'MultiDimensionalArrayPlain'
JeanPierreMR Apr 17, 2020
4b04734
Update arrays.py
JeanPierreMR Apr 17, 2020
7211a98
Update pydatastructs/linear_data_structures/__init__.py
JeanPierreMR Apr 18, 2020
d8db935
Update pydatastructs/linear_data_structures/arrays.py
JeanPierreMR Apr 18, 2020
d6c1f14
Update arrays.py
JeanPierreMR Apr 18, 2020
bcb2ee6
Apply suggestions from code review
JeanPierreMR Apr 18, 2020
8e1b86f
Updated test for multi dimensional array
JeanPierreMR Apr 18, 2020
db6fd14
Update arrays.py
JeanPierreMR Apr 18, 2020
e7a10cb
Update test_arrays.py
JeanPierreMR Apr 18, 2020
0dc9c6c
Minor update
JeanPierreMR Apr 18, 2020
388abf1
Minor changes
JeanPierreMR Apr 20, 2020
f176f46
Apply suggestions from code review
JeanPierreMR Apr 30, 2020
b842d54
Update arrays.py
JeanPierreMR Apr 30, 2020
cce3f28
Update arrays.py
JeanPierreMR Apr 30, 2020
a25e465
Update test_arrays.py
JeanPierreMR May 4, 2020
3427792
Update test_code_quality.py
JeanPierreMR May 4, 2020
427fd5b
Update pydatastructs/linear_data_structures/arrays.py
JeanPierreMR May 4, 2020
c306463
Update pydatastructs/linear_data_structures/arrays.py
JeanPierreMR May 4, 2020
19ceaad
Merge branch 'master' of https://github.com/JeanPierreMR/pydatastructs
JeanPierreMR May 4, 2020
7027671
Merge branch 'master' into master
JeanPierreMR May 4, 2020
e691e93
Apply suggestions from code review
czgdp1807 May 5, 2020
17ee7a9
Apply suggestions from code review
czgdp1807 May 5, 2020
806965e
Apply suggestions from code review
czgdp1807 May 5, 2020
a204a64
Apply suggestions from code review
czgdp1807 May 5, 2020
b8db3e5
Update pydatastructs/linear_data_structures/arrays.py
JeanPierreMR May 5, 2020
7a780c7
Update arrays.py
JeanPierreMR May 5, 2020
9b502d7
Apply suggestions from code review
czgdp1807 May 6, 2020
176afd9
Apply suggestions from code review
czgdp1807 May 6, 2020
8a6bba6
Update arrays.py
JeanPierreMR May 9, 2020
2abae14
Update test_arrays.py
JeanPierreMR May 9, 2020
5145abd
code ready
czgdp1807 May 15, 2020
182f8f7
ready for merge
czgdp1807 May 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update arrays.py
Changed docstring of MDA
  • Loading branch information
JeanPierreMR committed Apr 15, 2020
commit 96fe82f86ea02471a220fdbaae88ad03e617a997
14 changes: 5 additions & 9 deletions pydatastructs/linear_data_structures/arrays.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,12 @@ class MultiDimensionalArray(Array):

Raises
======

IndexError
Index goes out of boundaries
ValueError
When the number of elements in the list do not
match with the size.
More than three parameters are passed as arguments.
Types of arguments is not as mentioned in the docstring.

Note
====

When there's no dimensions or the dimension size is 0
TypeError
An argument is not what expected

Examples
========
Expand Down