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
- Host: GitHub
- URL: https://github.com/thinkful-ed/starter-solving-problems-with-linked-lists
- Owner: Thinkful-Ed
- Created: 2021-01-08T19:06:59.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T18:41:24.000Z (over 4 years ago)
- Last Synced: 2023-08-27T01:36:37.815Z (almost 3 years ago)
- Language: JavaScript
- Size: 226 KB
- Stars: 3
- Watchers: 11
- Forks: 257
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)