{"id":34609497,"url":"https://github.com/bthuilot/aoc23","last_synced_at":"2026-05-27T02:34:18.201Z","repository":{"id":205488055,"uuid":"714351913","full_name":"bthuilot/aoc23","owner":"bthuilot","description":"☃️ Advent of Code 2023 - OCaml 🐪 ☃️","archived":false,"fork":false,"pushed_at":"2023-12-26T02:43:37.000Z","size":232,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-27T02:34:11.143Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"OCaml","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bthuilot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-04T16:49:16.000Z","updated_at":"2023-11-04T16:50:23.000Z","dependencies_parsed_at":"2025-12-24T14:02:50.713Z","dependency_job_id":null,"html_url":"https://github.com/bthuilot/aoc23","commit_stats":null,"previous_names":["bthuilot/aoc23"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bthuilot/aoc23","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc23","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc23/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc23/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc23/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bthuilot","download_url":"https://codeload.github.com/bthuilot/aoc23/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bthuilot%2Faoc23/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33548246,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-24T14:01:44.293Z","updated_at":"2026-05-27T02:34:18.178Z","avatar_url":"https://github.com/bthuilot.png","language":"OCaml","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advent of Code 2023 - OCaml\n\n### Index\n\n1. [Building/Running](#Buidling/Running)\n2. [Tests](#Tests)\n3. [Completed Days](#Completed-Days)\n\nThis repositories stores my solutions in OCaml to [Advent of Code 2023](https://adventofcode.com/2023).\n\nFor more info on the approach to each day,\nread the module header comment located at the top of each day's source file \n(an index is located below)\n\n\n## Building/Running\n\nThis project leverages dune to compile and run the project, to build an executable simply run\n\n```bash\ndune exec aoc23\n# or\nmake\n\n# Optionally specify only a subset of days to run\ndune exec aoc23 1 8 23 # Run days 1, 8 and 23\n```\n\n## Tests\n\nTests are written using [alcotest](https://github.com/mirage/alcotest).\n\nTo test functionaility of the project, invoke the following:\n\n```bash\nmake test\n# Or\ndune runtest\n```\n\n## Completed Days\n\nBelow is an index to every completed day's implementation source code (containing documentation of approach) and the challenge for the day\n\n- [Day 0](lib/days/day00.ml) : *This is a test day supposed to server a placeholder until the challenge starts*\n- [Day 1](lib/days/day01.ml) : [Problem](https://adventofcode.com/2023/day/1)\n- [Day 2](lib/days/day02.ml) : [Problem](https://adventofcode.com/2023/day/2)\n- [Day 3](lib/days/day03.ml) : [Problem](https://adventofcode.com/2023/day/3)\n- [Day 4](lib/days/day04.ml) : [Problem](https://adventofcode.com/2023/day/4)\n- [Day 5](lib/days/day05.ml) : [Problem](https://adventofcode.com/2023/day/5)\n- [Day 6](lib/days/day06.ml) : [Problem](https://adventofcode.com/2023/day/6)\n- [Day 7](lib/days/day07.ml) : [Problem](https://adventofcode.com/2023/day/7)\n- [Day 8](lib/days/day08.ml) : [Problem](https://adventofcode.com/2023/day/8)\n- [Day 9](lib/days/day09.ml) : [Problem](https://adventofcode.com/2023/day/9)\n- [Day 10](lib/days/day10.ml) : [Problem](https://adventofcode.com/2023/day/10)\n- [Day 11](lib/days/day11.ml) : [Problem](https://adventofcode.com/2023/day/11)\n- [Day 12](lib/days/day12.ml) : [Problem](https://adventofcode.com/2023/day/12)\n- [Day 13](lib/days/day13.ml) : [Problem](https://adventofcode.com/2023/day/13)\n- [Day 14](lib/days/day14.ml) : [Problem](https://adventofcode.com/2023/day/14)\n- [Day 15](lib/days/day15.ml) : [Problem](https://adventofcode.com/2023/day/15)\n- [Day 16](lib/days/day16.ml) : [Problem](https://adventofcode.com/2023/day/16)\n- [Day 17](lib/days/day17.ml) : [Problem](https://adventofcode.com/2023/day/17)\n- [Day 18](lib/days/day18.ml) : [Problem](https://adventofcode.com/2023/day/18)\n- [Day 19](lib/days/day19.ml) : [Problem](https://adventofcode.com/2023/day/19)\n- [Day 20](lib/days/day20.ml) : [Problem](https://adventofcode.com/2023/day/20) -- part 1 only\n- [Day 21](lib/days/day21.ml) : [Problem](https://adventofcode.com/2023/day/21) -- part 1 only\n- [Day 22](lib/days/day22.ml) : [Problem](https://adventofcode.com/2023/day/22)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc23","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbthuilot%2Faoc23","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbthuilot%2Faoc23/lists"}