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
- Host: GitHub
- URL: https://github.com/caseywebb/dcp
- Owner: caseyWebb
- License: wtfpl
- Created: 2018-11-27T01:13:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T17:49:12.000Z (about 2 years ago)
- Last Synced: 2024-10-18T07:13:34.495Z (7 months ago)
- Topics: daily-coding-problem, dailycodingproblem
- Language: TypeScript
- Size: 177 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# dcp
[Daily coding problem](https://www.dailycodingproblem.com/) solutions, organized by `/year/month/day.ext`.

## 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
$
```