Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nick-lehmann/gym
VsCode extension to help you solve puzzles fast
https://github.com/nick-lehmann/gym
Last synced: about 20 hours ago
JSON representation
VsCode extension to help you solve puzzles fast
- Host: GitHub
- URL: https://github.com/nick-lehmann/gym
- Owner: nick-lehmann
- License: mit
- Created: 2023-04-01T08:16:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-08T15:44:14.000Z (over 1 year ago)
- Last Synced: 2024-04-29T02:31:18.828Z (6 months ago)
- Language: TypeScript
- Size: 200 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Problem Gym
Features
- [ ] Manage problems
- [ ] List problems (all and current)
- [ ] Open up all solutions to a problem
- [ ] Create text overview
- [ ] Create new problems
- [ ] New files from a template
- [ ] Download test data
- [ ] Verify problems
- [ ] Run tests
- [ ] Benchmark## Outline
- Problem (core concept)
- Task description
- Implementation in some languages
- Found in a provider
- Contains a set of tests
- Can have sub-problems- Problem Identifier
- single or multiple values that uniquely identify a problem
- the format depends on a provider- Solution
- Implementation of a single problem in a single language
- Stored in a file- Test
- Bound to a specific problem
- Independent of the actual implementation
- Found in a provider or created manually
- Set of input data with a corresponding solution
- Visualization?- Providers (e.g., AdventOfCode, Leetcode, etc.)
- Contain a set of problems with corresponding test cases