https://github.com/serknight/linked-list-exercise
Linked List Exercise
https://github.com/serknight/linked-list-exercise
Last synced: 4 days ago
JSON representation
Linked List Exercise
- Host: GitHub
- URL: https://github.com/serknight/linked-list-exercise
- Owner: SerKnight
- Created: 2016-12-02T00:01:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-07T01:51:42.000Z (over 9 years ago)
- Last Synced: 2025-02-25T16:32:50.651Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Overview
This repo contains an incomplete linked list implementation, with failing tests.
You can run the tests with the following command:
```
ruby test/list_test.rb
```
A good solution will:
- fill in the existing public methods
- add private/protected methods as necessary, following good design principles
- make all existing test pass
- add additional tests if necessary