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

https://github.com/valerybugakov/range-collection


https://github.com/valerybugakov/range-collection

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

## Minesweeper Task

### Usage

```sh
yarn
yarn start:mine
```

## Range Collection Task

Implement a `Range Collection` class.
A pair of integers define a range, for example: `[1, 5)`.
This range includes integers: `0, 1, 2, 3, and 4`.
A range collection is an aggregate of these ranges: `[1, 5), [10, 11), [100, 201)`

### Usage

```sh
yarn
yarn start
yarn test
```