Advent

Version, currently master branch1 version
  • master branchlatestMar 30, 2020

github.com/valbaca/AdventOfCode-Crystal

No description declared in shard.yml.

0 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  Advent:
    github: valbaca/AdventOfCode-Crystal
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.33.0
License
MIT
Author
Val Baca
Target
  • Advent from src/Advent.cr

Dependencies

This version declares no dependencies.

README

Advent

Contains solutions to Advent of Code problems written in Crystal

Advent of Code is my favorite way to learn a new language.

The problems are fun and interesting while also forcing me to learn practical parts of a language:

  • types: int, string, array, map, big-int, structs, classes
  • reading from files
  • writing to output
  • testing: I try to follow TDD it suits Advent of Code very well
  • performance: most coding challenges allow for brute force at first, but n becomes large quickly

Installation

TODO: Write installation instructions here

Usage

TODO: Write usage instructions here

Development

TODO: Write development instructions here

Contributing

  1. Fork it (https://github.com/your-github-user/Advent/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors