An open API service indexing awesome lists of open source software.

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

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