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

https://github.com/caseywebb/dcp

DailyCodingProblem.com Solutions
https://github.com/caseywebb/dcp

daily-coding-problem dailycodingproblem

Last synced: about 2 months ago
JSON representation

DailyCodingProblem.com Solutions

Awesome Lists containing this project

README

        

# dcp

[Daily coding problem](https://www.dailycodingproblem.com/) solutions, organized by `/year/month/day.ext`.

![](https://apps.caseywebb.xyz/dcp-badger?repo=caseyWebb/dcp)

## Usage

To run, use the respective language REPL.

### Haskell
```shell
$ ghci
Prelude> :l 2018/11/25
*Main> solve ...
*Main> :q
$
```

### TypeScript
```shell
$ ts-node
> import { solve } from './2018/11/25'
> solve(...)
> .exit
$
```