{"id":21367072,"url":"https://github.com/dbubenheim/advent-of-code-2020","last_synced_at":"2026-05-17T21:06:48.752Z","repository":{"id":65277925,"uuid":"321117765","full_name":"dbubenheim/advent-of-code-2020","owner":"dbubenheim","description":"My very own solutions to the 2020 edition of the awesome Advent of Code.","archived":false,"fork":false,"pushed_at":"2025-03-14T15:24:33.000Z","size":340,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T16:31:23.222Z","etag":null,"topics":["advent-of-code-2020","gradle","kotlin","problem-solving"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/dbubenheim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2020-12-13T17:13:32.000Z","updated_at":"2023-01-01T21:29:29.000Z","dependencies_parsed_at":"2023-11-29T18:27:02.608Z","dependency_job_id":"1daaf91d-42ed-4833-8127-a1333d5eabf1","html_url":"https://github.com/dbubenheim/advent-of-code-2020","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbubenheim%2Fadvent-of-code-2020","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbubenheim%2Fadvent-of-code-2020/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbubenheim%2Fadvent-of-code-2020/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbubenheim%2Fadvent-of-code-2020/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbubenheim","download_url":"https://codeload.github.com/dbubenheim/advent-of-code-2020/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243841200,"owners_count":20356441,"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","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-2020","gradle","kotlin","problem-solving"],"created_at":"2024-11-22T07:17:25.126Z","updated_at":"2026-05-17T21:06:43.704Z","avatar_url":"https://github.com/dbubenheim.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# advent-of-code-2020\n\n![GitHub last commit](https://img.shields.io/github/last-commit/dbubenheim/advent-of-code-2020?style=for-the-badge) \n![Travis (.org)](https://img.shields.io/travis/dbubenheim/advent-of-code-2020?style=for-the-badge)\n![GitHub](https://img.shields.io/github/license/dbubenheim/advent-of-code-2020?label=license\u0026style=for-the-badge)\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/dbubenheim/advent-of-code-2020?style=for-the-badge)\n![GitHub top language](https://img.shields.io/github/languages/top/dbubenheim/advent-of-code-2020?style=for-the-badge)\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n\nWhat things you need to install the software and how to install them\n\n- JDK 8 or later\n\n### Installing\n\nYou can setup the project into an IDE by importing the folder. The following command shows how to do it in IntelliJ IDEA.\n\n```\nidea advent-of-code-2020\n```\n\n## Running the tests\n\nYou can easily run the automated tests of this project by the shipped gradle wrapper\n\n```\n❯ ./gradlew clean test\nStarting a Gradle Daemon (subsequent builds will be faster)\n\n\u003e Task :app:compileKotlin\n\n\u003e Task :app:test\n\n...\n\nBUILD SUCCESSFUL in 1m 44s\n5 actionable tasks: 5 executed\n```\n\n### Break down into tests\n\nThere are unit tests for all of the solved days. Each one is in a separate package located under `src/test/kotlin`.\n\n```\n── test\n    ├── kotlin\n    │   └── advent\n    │       └── of\n    │           └── code\n    │               ├── day01\n    │               │   └── Day01Test.kt\n    │               ├── day02\n    │               │   └── Day02Test.kt\n    │               ├── day03\n    │               │   └── Day03Test.kt\n    │               ├── day04\n    │               │   └── Day04Test.kt\n    │               ├── day05\n    │               │   └── Day05Test.kt\n    │               ├── day06\n    │               │   └── Day06Test.kt\n    │               ├── day07\n    │               │   └── Day07Test.kt\n    │               ├── day08\n    │               │   └── Day08Test.kt\n    │               ├── day09\n    │               │   └── Day09Test.kt\n    │               ├── day10\n    │               │   └── Day10Test.kt\n    │               ├── day11\n    │               │   ├── Day11Test.kt\n    │               │   └── SeatLayoutPart2Test.kt\n    │               ├── day12\n    │               │   ├── Day12Test.kt\n    │               │   ├── ShipPart1Test.kt\n    │               │   └── ShipPart2Test.kt\n    │               ├── day13\n    │               │   ├── Day13Test.kt\n    │               │   └── SchedulerTest.kt\n    │               ├── day15\n    │               │   ├── Day15Test.kt\n    │               │   └── RambunctiousRecitationTest.kt\n    │               ├── day16\n    │               │   ├── Day16Test.kt\n    │               │   └── TicketTest.kt\n    │               ├── day17\n    │               │   └── Day17Test.kt\n```\n\n## Built With\n\n* [Kotlin](https://kotlinlang.org/) - The programming language used\n* [Gradle](https://gradle.org/) - Dependency Management\n\n## Authors\n\n* **Daniel Bubenheim** - *Initial work* - [dbubenheim](https://github.com/dbubenheim)\n\nSee also the list of [contributors](https://github.com/dbubenheim/advent-of-code-2020/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbubenheim%2Fadvent-of-code-2020","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbubenheim%2Fadvent-of-code-2020","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbubenheim%2Fadvent-of-code-2020/lists"}