Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 445 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 445 Bytes

LinkedLists

This repository is designed to help students practice building a LinkedList class.

Due Monday Dec 14th 6pm

Exercises

Clone this repository and fill in the following methods. There is a test file to help you test your methods.

  1. add_first
  2. get_first
  3. length
  4. add_last
  5. get_last
  6. get_at_index

Additional Resources