Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willbasky/solutions
The solutions of challenges that companies ever assigned to me
https://github.com/willbasky/solutions
Last synced: about 2 months ago
JSON representation
The solutions of challenges that companies ever assigned to me
- Host: GitHub
- URL: https://github.com/willbasky/solutions
- Owner: willbasky
- License: bsd-3-clause
- Created: 2023-08-05T04:15:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-08T04:05:48.000Z (over 1 year ago)
- Last Synced: 2024-10-13T10:34:26.797Z (3 months ago)
- Language: Haskell
- Size: 179 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solutions
The solutions of challenges that companies ever assigned to me
## Comparing of the haskell and cargo implementation
```shell
❯ hyperfine "cargo r" "stack run"
Benchmark 1: cargo r
Time (mean ± σ): 57.6 ms ± 14.3 ms [User: 46.5 ms, System: 11.0 ms]
Range (min … max): 41.0 ms … 75.7 ms 64 runsBenchmark 2: stack run
Time (mean ± σ): 597.4 ms ± 30.5 ms [User: 521.1 ms, System: 95.1 ms]
Range (min … max): 549.8 ms … 636.1 ms 10 runsSummary
cargo r ran
10.36 ± 2.63 times faster than stack run
```