Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 492 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 492 Bytes

LinkedLists

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

Questions for Students:

With your pair answer the following questions:

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