{"id":35012223,"url":"https://github.com/forax/advent-of-code-2023","last_synced_at":"2025-12-27T05:00:31.810Z","repository":{"id":210572049,"uuid":"726893445","full_name":"forax/advent-of-code-2023","owner":"forax","description":"Let's try to do the advent of code 2023 in Java 21","archived":false,"fork":false,"pushed_at":"2023-12-18T18:50:50.000Z","size":34,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-12-19T12:43:56.046Z","etag":null,"topics":["advent-of-code-2023","advent-of-code-java"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/forax.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}},"created_at":"2023-12-03T17:56:17.000Z","updated_at":"2023-12-20T15:51:19.900Z","dependencies_parsed_at":"2023-12-20T16:07:31.646Z","dependency_job_id":null,"html_url":"https://github.com/forax/advent-of-code-2023","commit_stats":null,"previous_names":["forax/advent-of-code-2023"],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/forax/advent-of-code-2023","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forax%2Fadvent-of-code-2023","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forax%2Fadvent-of-code-2023/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forax%2Fadvent-of-code-2023/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forax%2Fadvent-of-code-2023/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/forax","download_url":"https://codeload.github.com/forax/advent-of-code-2023/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/forax%2Fadvent-of-code-2023/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28072675,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-27T02:00:05.897Z","response_time":58,"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":["advent-of-code-2023","advent-of-code-java"],"created_at":"2025-12-27T05:00:07.985Z","updated_at":"2025-12-27T05:00:31.801Z","avatar_url":"https://github.com/forax.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# advent-of-code-2023\nLet's try to do the advent of code 2023 in Java 21\n\nIt's not the first time I tried to do an advent of code, but I never completed one, so this year in order to ty to complete it,\nI will only do the first part of each challenge in hope it wil not take too much time.\n\nEach puzzle is contained in one file, by example for the day 1, you can just run\n```bash\njava src/main/java/AdventOfCode01.java\n```\n\n- [Day  1](https://adventofcode.com/2023/day/1) [AdventOfCode01.java](src/main/java/AdventOfCode01.java)\n- [Day  2](https://adventofcode.com/2023/day/2) [AdventOfCode02.java](src/main/java/AdventOfCode02.java)\n- [Day  3](https://adventofcode.com/2023/day/3) [AdventOfCode03.java](src/main/java/AdventOfCode03.java)\n- [Day  4](https://adventofcode.com/2023/day/4) [AdventOfCode04.java](src/main/java/AdventOfCode04.java)\n- [Day  5](https://adventofcode.com/2023/day/5) [AdventOfCode05.java](src/main/java/AdventOfCode05.java)\n- [Day  6](https://adventofcode.com/2023/day/6) [AdventOfCode06.java](src/main/java/AdventOfCode06.java)\n- [Day  7](https://adventofcode.com/2023/day/7) [AdventOfCode07.java](src/main/java/AdventOfCode07.java)\n- [Day  8](https://adventofcode.com/2023/day/8) [AdventOfCode08.java](src/main/java/AdventOfCode08.java)\n- [Day  9](https://adventofcode.com/2023/day/9) [AdventOfCode09.java](src/main/java/AdventOfCode09.java)\n- [Day 10](https://adventofcode.com/2023/day/10) [AdventOfCode10.java](src/main/java/AdventOfCode10.java)\n- [Day 11](https://adventofcode.com/2023/day/11) [AdventOfCode11.java](src/main/java/AdventOfCode11.java)\n- [Day 12](https://adventofcode.com/2023/day/12) [AdventOfCode12.java](src/main/java/AdventOfCode12.java)\n- [Day 13](https://adventofcode.com/2023/day/13) [AdventOfCode13.java](src/main/java/AdventOfCode13.java)\n- [Day 14](https://adventofcode.com/2023/day/14) [AdventOfCode14.java](src/main/java/AdventOfCode14.java)\n- [Day 15](https://adventofcode.com/2023/day/15) [AdventOfCode15.java](src/main/java/AdventOfCode15.java)\n- [Day 16](https://adventofcode.com/2023/day/16) [AdventOfCode16.java](src/main/java/AdventOfCode16.java)\n- [Day 17](https://adventofcode.com/2023/day/17) [AdventOfCode17.java](src/main/java/AdventOfCode17.java)\n- [Day 18](https://adventofcode.com/2023/day/18) [AdventOfCode18.java](src/main/java/AdventOfCode18.java)\n- [Day 19](https://adventofcode.com/2023/day/19) [AdventOfCode19.java](src/main/java/AdventOfCode19.java)\n- [Day 20](https://adventofcode.com/2023/day/20) [AdventOfCode20.java](src/main/java/AdventOfCode20.java)\n- [Day 21](https://adventofcode.com/2023/day/21) [AdventOfCode21.java](src/main/java/AdventOfCode21.java)\n- [Day 22](https://adventofcode.com/2023/day/22) [AdventOfCode22.java](src/main/java/AdventOfCode22.java)\n- [Day 23](https://adventofcode.com/2023/day/23) [AdventOfCode23.java](src/main/java/AdventOfCode23.java)\n- [Day 24](https://adventofcode.com/2023/day/24) [AdventOfCode24.java](src/main/java/AdventOfCode24.java)\n- [Day 25](https://adventofcode.com/2023/day/25) [AdventOfCode25.java](src/main/java/AdventOfCode25.java)\n\nEach code will be published the day after.\n\nEnjoy\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforax%2Fadvent-of-code-2023","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fforax%2Fadvent-of-code-2023","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforax%2Fadvent-of-code-2023/lists"}