Skip to content

Docs modification for better clarification #424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 31, 2021
Merged
Changes from 1 commit
Commits
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
Doc added for ODA and DODA
  • Loading branch information
pratikgl committed Oct 26, 2021
commit dd51f78ffff57b63c528f96b2d04b0c44b21f547
6 changes: 4 additions & 2 deletions pydatastructs/linear_data_structures/arrays.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ def __str__(self) -> str:

class OneDimensionalArray(Array):
'''
Represents one dimensional arrays.
Represents one dimensional static arrays of
fixed size.

Parameters
==========
Expand Down Expand Up @@ -269,7 +270,8 @@ class DynamicArray(Array):

class DynamicOneDimensionalArray(DynamicArray, OneDimensionalArray):
"""
Represents dynamic one dimensional arrays.
Represents resizable and dynamic one
dimensional arrays.

Parameters
==========
Expand Down