We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/** * Creates a {@code DynamicArray} object with an initial size * @param initialSize the initial size of the array. */ public DynamicArray(int initialSize) { if (initialSize > 0) this.balloon = new Object[initialSize]; else if (initialSize == 0) this.balloon = new Object[]{}; else throw new IllegalArgumentException("Illegal Capacity: " + initialSize); }
For removal, dynamic array size should increase based on the inserted elements
The text was updated successfully, but these errors were encountered:
Merge pull request #13
b9dcc04
FIXED ISSUE[#10]
Fixed on commit: a99fa55
Sorry, something went wrong.
No branches or pull requests
For removal, dynamic array size should increase based on the inserted elements
The text was updated successfully, but these errors were encountered: