https://github.com/cicovic-andrija/line-by-line
Solutions to programming problems in C
https://github.com/cicovic-andrija/line-by-line
algorithms c interview-questions problem-solving programming
Last synced: 2 months ago
JSON representation
Solutions to programming problems in C
- Host: GitHub
- URL: https://github.com/cicovic-andrija/line-by-line
- Owner: cicovic-andrija
- Created: 2024-01-18T19:14:10.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-21T20:05:18.000Z (10 months ago)
- Last Synced: 2024-08-22T21:45:16.300Z (10 months ago)
- Topics: algorithms, c, interview-questions, problem-solving, programming
- Language: C
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Line-by-line: Solutions to programming problems in C
## 1. Build
1.1. Requires a linux system with `gcc`.
1.2. Run `gcc -std=c89 -m64 -pedantic -Wall -Wextra -Wshadow -Wno-variadic-macros -I ./ *.c -o ./lbl`.
## 2. Run
2.1. Requires [-> 1. Build](#1-build).
2.2. List all available problems by running `lbl` or `lbl list`.
2.3. Execute the solution for a problem by running `lbl run N`, where `N` is the problem number.
2.4. Run `lbl help` for additional options.
## 3. Test
3.1. Requires [-> 1. Build](#1-build).
3.2. List all available problems by running `lbl` or `lbl list`.
3.3. Run all tests for a problem by running `lbl test N`, where `N` is the problem number.
3.4. Run all tests for all problems by running `lbl test`.