https://github.com/justromeon/codingbat
CodingBat Solutions implemented in Haskell
https://github.com/justromeon/codingbat
exercises-solutions haskell learning-by-doing
Last synced: 2 months ago
JSON representation
CodingBat Solutions implemented in Haskell
- Host: GitHub
- URL: https://github.com/justromeon/codingbat
- Owner: justromeon
- License: mit
- Created: 2024-11-24T19:10:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-16T14:05:58.000Z (11 months ago)
- Last Synced: 2025-02-16T14:41:19.750Z (11 months ago)
- Topics: exercises-solutions, haskell, learning-by-doing
- Language: Haskell
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodingBat Solutions
This repository contains solutions to CodingBat Python challenges, implemented in Haskell.
## Directory Structure
- **src/**: Contains the Haskell solution files.
- **test/**: Contains the test files for the solutions.
## Running the Tests
1. Install Haskell and Cabal if not already installed. You can follow the instructions [here](https://www.haskell.org/downloads/).
2. Clone the repository and navigate into the project directory:
```bash
git clone https://github.com/justromeon/codingbat.git
cd codingbat
3. Install dependencies and build the project:
```bash
cabal update
cabal build
4. Running the test
```bash
cabal test
This will run all the test cases in the test directory.