Add your implementation of the dynamic array data structure.
- Create a directory under
submissions/lang
with your username. Replacelang
with the name of programming language you are using. For example:submissions/python/pablotrinidad
represents @pablotrinidad's submission written in Python. - When your contribution is ready, create a PR making sure it meets the criteria.
- Add yourself to this README's list of contributors.
Your submission must include:
- An implementation of dynamic arrays where a clear API is provided for:
- Initializing a new dynamic array.
- Inserting elements at the end.
- Inserting elements at the beginning.
- Removing elements at a given position.
- Removing elements at the end.
- Removing elements at the beginning.
- Unit tests for the fundamental methods provided by your API.
- Docs would be nice ❤️.