https://github.com/jmcph4/problems
"Everything is numbered here; the monster is Zero"
https://github.com/jmcph4/problems
adt algorithms compsci cs data-structures edu education problem-set problems reference
Last synced: 6 months ago
JSON representation
"Everything is numbered here; the monster is Zero"
- Host: GitHub
- URL: https://github.com/jmcph4/problems
- Owner: jmcph4
- License: mit
- Created: 2016-12-17T08:30:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-18T00:58:59.000Z (almost 9 years ago)
- Last Synced: 2025-02-16T00:44:16.068Z (8 months ago)
- Topics: adt, algorithms, compsci, cs, data-structures, edu, education, problem-set, problems, reference
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Problems #
---A collection of programming problems I have created for my own use. I am sharing them mainly for accessibility and the hope that others may benefit from them; however, they are not written with anyone else in mind (so they may seem somewhat quirky and disorderly).
## Format ##
"Everything is numbered here; The monster is Zero." *Godzilla Vs. Monster Zero*, 1965
The problems themselves are under the `problems/` directory. Each problem is numbered starting at one and proceeding forward. The directories under `problems/` are numbered accordingly. Each problem is entirely self-contained and does not (and **should not**) rely on any other problem in the set.
Each problem consists of at least a single text file, named `problem_n.txt`, where `n` is the problem number. This file contains the description of the problem, constraints, and documents attached materials (e.g. source code, static assets, datasets, etc.). This file follows the following format:
TASKS
[Brief description of the problem]CONSTRAINTS
- [Constraint 1]
- [Constraint 2]
- ...
MATERIAL
[Brief outline of included files and their purposes]