We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a global CLI to run any given years code, where the code is in any given language, and we can run any day and its parts individually.
The structure will probably maintain this format:
$year/$language/$day.$langext
Currently this is like:
├─ 2023 │ ├─ Data │ ├─ Rust │ │ ├─ src │ │ │ ├─ days │ │ │ │ ├─ dayX.rs │ │ │ │ ├─ dayY.rs │ ├─ Python │ │ ├─ Day_X │ │ ├─ Day_Y │ ├─ OCaml ─ 2022 │ ├─ Data │ ├─ Python │ │ ├─ Day_X │ │ ├─ Day_Y │ ├─ Rust │ │ ├─ src │ │ │ ├─ days │ │ │ │ ├─ dayX.rs │ │ │ │ ├─ dayY.rs
Will need to take into account differing languages structure requirements (Python flat vs Rust src/?)
src/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a global CLI to run any given years code, where the code is in any given language, and we can run any day and its parts individually.
The structure will probably maintain this format:
$year/$language/$day.$langext
Currently this is like:
Unanswered Questions
Will need to take into account differing languages structure requirements (Python flat vs Rust
src/
?)The text was updated successfully, but these errors were encountered: