{"id":22770078,"url":"https://github.com/tomfran/aoc-24","last_synced_at":"2026-02-18T06:30:49.490Z","repository":{"id":266172695,"uuid":"897593565","full_name":"tomfran/aoc-24","owner":"tomfran","description":"Advent of Code 2024 Python Solutions","archived":false,"fork":false,"pushed_at":"2024-12-13T21:37:08.000Z","size":64,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-24T18:51:35.166Z","etag":null,"topics":["advent-of-code","advent-of-code-2024","aoc","aoc-2024","aoc-2024-in-python","aoc2024","aoc2024-in-python","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomfran.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-12-02T22:35:00.000Z","updated_at":"2024-12-20T21:59:02.000Z","dependencies_parsed_at":"2025-04-13T06:10:32.361Z","dependency_job_id":"9374f0fe-a69e-462e-a947-771ed327c236","html_url":"https://github.com/tomfran/aoc-24","commit_stats":null,"previous_names":["tomfran/aoc-24"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tomfran/aoc-24","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomfran%2Faoc-24","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomfran%2Faoc-24/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomfran%2Faoc-24/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomfran%2Faoc-24/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomfran","download_url":"https://codeload.github.com/tomfran/aoc-24/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomfran%2Faoc-24/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29570320,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["advent-of-code","advent-of-code-2024","aoc","aoc-2024","aoc-2024-in-python","aoc2024","aoc2024-in-python","python"],"created_at":"2024-12-11T15:19:23.013Z","updated_at":"2026-02-18T06:30:49.473Z","avatar_url":"https://github.com/tomfran.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advent of Code 2024 :christmas_tree:\n\nPython solutions for [Advent of Code](https://adventofcode.com/) 2024.\n\n## Commands\n\nSetup and build everything, using [uv](https://github.com/astral-sh/uv):\n\n```\nmake build\n```\n\nSet the following env variable with yout session cookie to allow input downloads: \n\n```sh\nAOC_SESSION_ID=...\n```\n\nRun a solution with: \n\n```sh\npython src/aoc/solutions/\u003cDAY\u003e.py\n```\n\nAlternatevely you can use one of those two rules:\n\n```sh\nmake run    # run latest file in solutions\nmake runall # run all solutions\n```\n\n## Solutions\n\nHere is the complete list of solutions:\n\n|                **Day** | **Link**                          | **Total Lines** | **Effective Lines** | **Runtime** |  **Last Updated** |\n| ---------------------: | --------------------------------- | --------------: | ------------------: | ----------: | ----------------: |\n|                     01 | [Link](./src/aoc/solutions/01.py) |              39 |                  26 |    0m0.074s | Wed, Dec 11, 2024 |\n|                     02 | [Link](./src/aoc/solutions/02.py) |              44 |                  30 |    0m0.073s | Wed, Dec 11, 2024 |\n|                     03 | [Link](./src/aoc/solutions/03.py) |              49 |                  33 |    0m0.069s | Wed, Dec 11, 2024 |\n|                     04 | [Link](./src/aoc/solutions/04.py) |              66 |                  42 |    0m0.099s | Wed, Dec 11, 2024 |\n|                     05 | [Link](./src/aoc/solutions/05.py) |              62 |                  43 |    0m0.069s | Wed, Dec 11, 2024 |\n|                     06 | [Link](./src/aoc/solutions/06.py) |             101 |                  65 |    0m2.792s | Wed, Dec 11, 2024 |\n|                     07 | [Link](./src/aoc/solutions/07.py) |              46 |                  30 |    0m0.644s | Wed, Dec 11, 2024 |\n|                     08 | [Link](./src/aoc/solutions/08.py) |              67 |                  45 |    0m0.333s | Wed, Dec 11, 2024 |\n|                     09 | [Link](./src/aoc/solutions/09.py) |              98 |                  66 |    0m2.131s | Wed, Dec 11, 2024 |\n|                     10 | [Link](./src/aoc/solutions/10.py) |              55 |                  39 |    0m0.076s | Wed, Dec 11, 2024 |\n|                     11 | [Link](./src/aoc/solutions/11.py) |              29 |                  20 |    0m0.118s | Wed, Dec 11, 2024 |\n| 12 (Incomplete part 2) | [Link](./src/aoc/solutions/12.py) |              71 |                  49 |    0m0.068s | Fri, Dec 13, 2024 |\n|                     13 | [Link](./src/aoc/solutions/13.py) |              56 |                  35 |    0m0.093s | Fri, Dec 13, 2024 |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomfran%2Faoc-24","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomfran%2Faoc-24","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomfran%2Faoc-24/lists"}