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

https://github.com/thinkful-ed/starter-solving-problems-with-linked-lists


https://github.com/thinkful-ed/starter-solving-problems-with-linked-lists

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Starter: Solving problems with linked lists

_Sample problems and solutions for problem solving with linked lists_

## Getting Started

Clone this repository.

```bash
git clone https://github.com/Thinkful-Ed/starter-solving-problems-with-linked-lists.git
```

Navigate to the root of the repository and install dependencies.

```bash
npm i
```

To run the tests

```bash
npm test
```

## Solutions

To view the sample solutions checkout the **Solution** branch.

## Problems

- [Reverse a linked list](./src/reverse)
- [Third from end](./src/thirdfromend)
- [Swap Nodes](./src/swap)
- [The Josephus Problem](./src/josephus)