https://github.com/jdeepd/algolab
CS213 AlgoLab codes
https://github.com/jdeepd/algolab
Last synced: over 1 year ago
JSON representation
CS213 AlgoLab codes
- Host: GitHub
- URL: https://github.com/jdeepd/algolab
- Owner: JDeepD
- License: mit
- Created: 2023-01-31T12:01:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-21T08:55:14.000Z (about 3 years ago)
- Last Synced: 2025-01-11T03:58:16.050Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## CS213 Algorithm Lab Codes
## How to use
1. All C files are organised inside `dayN` directory.
2. For compiling a certain day's C files, edit the `DAY` variable in `Makefile`
to the appropriate one.
3. Run `make`
## For the extra points
4. If you dont want to mess `Makefile`, you can use the `run.sh` script with the `dayN` directory
as a parameter. (This requires `sed` installed on your system. For Windows users, you will need Cygwin's sed)
For ex, to compile everything under `day3` directory, do
```sh
sh run.sh day3
```
This command will also run the executable.