Giter Club home page Giter Club logo

advent-of-ocaml's Introduction

โœจ๐Ÿซ๐ŸŽ„ Advent of OCaml ๐ŸŽ„๐Ÿซโœจ

Let's do some Advent of Code 2023 in OCaml!

Note

Please open an issue or reach out to me on Twitter or Mastodon if you have any questions, recomendations or just want to say hi!

Leaderboard

Tip

There is an Advent of OCaml list on Twitter and a Advent of Code leaderboard by Sabine:

3236051-3f7ecc0b

https://adventofcode.com/2023/leaderboard/private

Setup

Warning

I have never tried this on Windows

The official package manage of OCaml is Opam (OCaml Package Manager). Install it by following the official instructions:

After Opam has been installed you can use the provided Makefile to get going:

Caution

If you already have an old installation of Opam make sure you run opam update before setting up!

Running make should give you some instructions. Lets setup the project:

make setup

This install OCaml itself in a local Opam switch, the dependencies for the project and also ocaml-lsp-server, ocamlformat and utop.

Before running a command, make sure your Opam environment is in sync with your local switch. You can do this by running

opam switch

This should tell you the following:

[NOTE] Current switch has been selected based on the current directory.
       The current global system switch is default.

Caution

Sometime the current switch can get out of sync when navigating back and fourth between folders, you can sync the switch by running:

eval $(opam env)

Before coding

If this is your first time doing OCaml consider reading more about it at the official website https://ocaml.org/. You can find information about everything from configuring you editor (with the LSP we installed) to syntax.

If this is your first time doing Advent of Code you should consider spending five minutes to read the about page: https://adventofcode.com/2023/about

Tip

Personally, I think Advent of Code is hard.

I don't work with these kind of algorithm-y problems on a day-to-day basis. I guess most people don't. It's easy to get impostor syndrome and compare yourself to others. Others that do good in Advent of Code has probably done so for some time.

Find a group and discuss the problems with others. You probably have a colleague at work that does Advent of Code without you even knowing. Your favorite streamer or YouTuber might have a dedicated Discord channel.

Focus on learning and having fun.

And lose a bit of sleep!

Intended workflow

To start working on a day run

Important

Days are indexed {01..25} - don't forget the leading 0 - because I am 0x developer

make day01

TL;DR

  • Paste your puzzle input into ./day_01/input.txt

  • open ./day_01/solution_01.ml and read the comments

  • Put general utility function in the ./lib/utils.ml module - use them in your solution with the Util module

  • Take a look in the ./examples to see some uses of testing, modules and parsing

Running without tests

If you don't wanna run tests and just print to stdout you can do the following:

dune exec ./day_01/run_1.exe ./day_01/input.txt -w

Change your day_01 and run_1 accordingly to day and part

The long story

To be frank, this repository has been a bit of experimentation to learning Dune. To learn workflows more than "run the program, print the result." The way I intend to work on my solutions (after getting some nice feedback on the OCaml forums here) this year is by doing the following:

  • Inline tests with the library Alcotest

  • Integration tests with Dune diffing and promotion

  • Writing a bunch of questionable OCaml until shit works

  • Complain about the fact that Python actually looks really nice for solving these kind of problems

Start with opening the file ./day_01/solution_01.ml. This file contains a lot of comments (don't worry, the other days don't), read those and you should be good to go.

  • Take a look in the ./lib/exmaples.ml module for some other neat things

I've include a lot of comments in a lot of files to guide the users through the usage of Opam, dune, testing, and more. You could perhaps take a look in the Makefile or the dune file in ./day_01 as well.

Inline tests

Inline testing is the idea of defining tests inside your programs source file instead of a separate test file. I think this kind of testing suits Advent of Code nicely. Some examples of inline tests can be found in ./examples/testing.ml.

Integration tests

This might sound dumb but technically we are doing an integration test. We test the output of each day when printing the result. You can print the result by uncommenting (* Run.solve_int (module A); *) part. This should show the result as a diff in your terminal. Copy it and submit it as your solution. If it's correct rundune promote. This saves the result in your p1.expected file.

If you feel like doing a refactor of your day (yes this will happen, going back to a day and polish it after seeing how other people solved it is fun) you verify that your output matches the contents of the promoted file p1.expected.

Testing the workflow yourself

The current state of the project is:

  • Day 1 Part 1 is already solved

  • Day 1 Part 2 is failing our sample test: can you fix it?

    Hint: there is a unneeded + 1 there!

  • After the test stops failing: run the program for real, uncomment the Run.solve_int function.run, the result should be printed in your terminal.

    Run dune promote

  • Check the ./day_01/p2.expected

  • No tests should be failing

Dune commands for those curious

## Building

dune build # build the project

dune build ./day_01 # build day_01

dune build ./day_01 -w # build day_01 in watch mode


## Executing programs

dune exec ./completed_days.exe # show completed days

dune exec ./day_01/run_1.exe # run Day 1 Part 1

dune exec ./day_01/run_2.exe # run Day 1 Part 2


## Testing

dune test # run all tests in the project

dune test ./day_01 # run all tests for day_01

dune test ./day_01 -w # run all tests for day_01 in watch mode


## Promoting

dune promote


## Formatting

dune fmt # this shows the expected formatting

dune fmt --auto-promote # do the actual formatting

Packages

I've heard people say that you shouldn't use packages for Advent of Code because...? I don't care lmao:

  • The standard library of OCaml is pretty minimal by design

  • I don't want to implement my own priority search queue, for now

  • PPXes are cool

  • Tests are not cool but good sometimes

Two extensions of the standard library. I like them because it does not replace the standard library: it still feels like writing "pure" OCaml with some extra niceties.

Some day I will learn to use this properly. Parsing!

Priority Search Queue. I've used this when implementing the Dijkstra's algorithm.

The whole thing is about generating code! See ./examples/modules.ml under the (* ppx_deriving *) comment.

Used for testing, primarily inline testing in this case.

Adding packages

To add a new package to the project:

  • Find the package you want to add using the OCaml website: https://ocaml.org/packages

  • Edit your dune-project file under the depends stanza and add the package (mypackage (>= 1.2.3))

  • Rebuild you project using make build to generate a new aoc.opam file

  • Run make package

  • Add the package to your module of choice by editing it's dune file:

    Let's add the package to our ./day_01/solution_01.ml Module:

    • Open the ./day_01/dune file

    • Add your package under the libraries stanza: (libraries aoc angstrom containers oseq mypackage)

    • Build the project make build

    You should now be able to find the package in you solution_01.ml file by using Mypackage - Success!

Learning material

Here is an assortments of free material for learning OCaml. Shoutout to the creators of these! <3

Official website

Start at the https://ocaml.org/docs/values-and-functions and make your way through.

Courses and books

Exercises

Syntax quirks

Closing notes

There is probably something I have missed. I've tried to leave comments in the source code of most things. The dune files, the mli-files, the Makefile and more. Have a look around and see if things makes sense!

If you made it this far, thank you!

Take care and have a lovely christmas โค๏ธ ๐ŸŽ„

advent-of-ocaml's People

Contributors

p1xelher0 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

lmnzx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.