https://github.com/exercism/julia
Exercism exercises in Julia.
https://github.com/exercism/julia
community-contributions-accepted exercism-track julia maintained
Last synced: 13 days ago
JSON representation
Exercism exercises in Julia.
- Host: GitHub
- URL: https://github.com/exercism/julia
- Owner: exercism
- License: mit
- Created: 2016-11-21T01:58:59.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T18:59:59.000Z (22 days ago)
- Last Synced: 2025-05-07T07:30:41.901Z (14 days ago)
- Topics: community-contributions-accepted, exercism-track, julia, maintained
- Language: Julia
- Homepage: https://exercism.org/tracks/julia
- Size: 2.26 MB
- Stars: 68
- Watchers: 12
- Forks: 71
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Exercism Julia Track

Exercism exercises in Julia.
## Contributing Guide
Please see the [contributing guide](CONTRIBUTING.md).
Please read and adhere to the [Code of Conduct](CODE_OF_CONDUCT.md).
## Code Formatting Guidelines
Your example solutions should adhere to the following guidelines:
- 4 spaces per indentation level, no tabs
- use whitespace to make the code more readable
- no whitespace at the end of a line (trailing whitespace)
- comments are good, especially when they explain the algorithm
- use upper camel case convention for type names
- use lower case for method names, add underscores if necessaryThese are based on the [General Formatting Guidelines](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#general-formatting-guidelines-for-julia-code-contributions) for contributions to the Julia codebase.