No description
				
			
		| challenges/december-2024 | ||
| lib/geometry | ||
| .envrc | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
| shell.nix | ||
Frozendev Challenges
A repository for storing my subpar solutions to daily challenges, if or when I have the time to tackle them. Expect nothing but bad code, I focus on "works" before "works well".
Structure
This repository utilizes Cargo's workspaces feature.
├── challenges
│   └── december-2024
│       ├── c1
│       ├── c2
│       └── c3
├── lib
│   └── geometry
└── shell.nix
- 
challenges is where challenges will go, sorted by month and then by order. Since challenges are not published on a specific schedule, number is incremented whenever there is a new challenge. 
- 
lib is where shared code, sorted by functionality, may go. If only one challenge relies on a piece of code, then it may be put inside a libtarget or simply inmain.rs.
- 
shell.nix is for the Nix users. It uses an unlocked <nixpkgs>instance, since I already lock special lookup paths in my system registry.LicenseMIT.