Skip to content

PlatziMaster/challenge-cs-01

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Arrays!

Add your implementation of the dynamic array data structure.

How to submit:

  1. Create a directory under submissions/lang with your username. Replace lang with the name of programming language you are using. For example: submissions/python/pablotrinidad represents @pablotrinidad's submission written in Python.
  2. When your contribution is ready, create a PR making sure it meets the criteria.
  3. Add yourself to this README's list of contributors.

Criteria

Your submission must include:

  1. 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.
  2. Unit tests for the fundamental methods provided by your API.
  3. Docs would be nice ❤️.

Contributors

License

This project is under GNU GENERAL PUBLIC LICENSE Version 3