{"id":16288385,"url":"https://github.com/cdalvaro/project-euler","last_synced_at":"2025-04-05T09:31:29.673Z","repository":{"id":43940336,"uuid":"266570162","full_name":"cdalvaro/project-euler","owner":"cdalvaro","description":"🧮👨‍💻 Series of challenging mathematical/computer programming problems","archived":false,"fork":false,"pushed_at":"2024-11-14T22:42:58.000Z","size":427,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-21T01:25:51.257Z","etag":null,"topics":["challenges","challenges-solved","project-euler","project-euler-cpp","project-euler-solutions"],"latest_commit_sha":null,"homepage":"https://projecteuler.net","language":"C++","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/cdalvaro.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}},"created_at":"2020-05-24T15:32:07.000Z","updated_at":"2024-11-14T22:43:00.000Z","dependencies_parsed_at":"2023-12-14T23:28:40.264Z","dependency_job_id":"6d3041fc-33db-443d-ad51-742eb05b9d54","html_url":"https://github.com/cdalvaro/project-euler","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/cdalvaro%2Fproject-euler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdalvaro%2Fproject-euler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdalvaro%2Fproject-euler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdalvaro%2Fproject-euler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdalvaro","download_url":"https://codeload.github.com/cdalvaro/project-euler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247318206,"owners_count":20919453,"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":["challenges","challenges-solved","project-euler","project-euler-cpp","project-euler-solutions"],"created_at":"2024-10-10T19:48:08.016Z","updated_at":"2025-04-05T09:31:25.796Z","avatar_url":"https://github.com/cdalvaro.png","language":"C++","readme":"[![Challenges Soved][challenges_solved_badge]][profile_link]\n[![C++ Version][cpp_badge]][cpp_link]\n[![Compilation Tool][compilation_tool_badge]][compilation_tool_link]\n[![Unit Tests][unit_testing_badge]][unit_testing_link]\n\n[![GitHub Challenges][gh_challenges_badge]][gh_challenges_link]\n[![Code coverage][codecov_badge]][codecov_link]\n[![Codacy][codacy_badge]][codacy_link]\n\n# Project Euler Challenges\n\n[Project Euler](https://projecteuler.net) is a series of challenging mathematical/computer programming problems that\nwill require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and\nefficient methods, the use of a computer and programming skills will be required to solve most problems.\n\nThe motivation for starting Project Euler, and its continuation, is to provide a platform for the inquiring mind to\ndelve into unfamiliar areas and learn new concepts in a fun and recreational context.\n\n## Table of Contents\n\n- [Structure](#structure)\n- [Solutions](#solutions)\n\n## Structure\n\nThis project is composed by the [`Challenges`](lib) library, where you can find algorithms for each Project Euler's\nchallenge inside its corresponding directory. And the [`tests`](tests) directory, which contains the verification of\neach challenge algorithm.\n\nTests are built using [_Google Test_](https://github.com/google/googletest) and [_Google\nBenchmark_](https://github.com/google/benchmark) libraries.\n\n## Solutions\n\nSolutions are located inside `lib/challenges/cWXYZ` directory, where `WXYZ` is the challenge number following\nthe [Archive](https://projecteuler.net/archives) section on Project Euler webpage.\n\n\u003cdetails\u003e\n  \u003csummary\u003eClick here to unfold solved challenges list\u003c/summary\u003e\n\n- [Challenge 1](lib/challenges/c0001)\n- [Challenge 2](lib/challenges/c0002)\n- [Challenge 3](lib/challenges/c0003)\n- [Challenge 4](lib/challenges/c0004)\n- [Challenge 5](lib/challenges/c0005)\n- [Challenge 6](lib/challenges/c0006)\n- [Challenge 7](lib/challenges/c0007)\n- [Challenge 8](lib/challenges/c0008)\n- [Challenge 9](lib/challenges/c0009)\n- [Challenge 10](lib/challenges/c0010)\n- [Challenge 11](lib/challenges/c0011)\n- [Challenge 12](lib/challenges/c0012)\n- [Challenge 13](lib/challenges/c0013)\n- [Challenge 14](lib/challenges/c0014)\n- [Challenge 15](lib/challenges/c0015)\n- [Challenge 16](lib/challenges/c0016)\n- [Challenge 17](lib/challenges/c0017)\n- [Challenge 18](lib/challenges/c0018)\n- [Challenge 19](lib/challenges/c0019)\n- [Challenge 20](lib/challenges/c0020)\n- [Challenge 21](lib/challenges/c0021)\n- [Challenge 22](lib/challenges/c0022)\n- [Challenge 23](lib/challenges/c0023)\n- [Challenge 24](lib/challenges/c0024)\n- [Challenge 25](lib/challenges/c0025)\n- Challenge 26 - Not yet solved...\n- [Challenge 27](lib/challenges/c0027)\n\n\u003c/details\u003e\n\n[challenges_solved_badge]: https://img.shields.io/badge/Solved-27-f93\n\n[profile_link]: https://projecteuler.net/progress=cdalvaro\n\n[cpp_badge]: https://img.shields.io/badge/C++-20-00599C?logo=C%2B%2B\n\n[cpp_link]: https://en.cppreference.com/w/cpp/20\n\n[compilation_tool_badge]: https://img.shields.io/badge/CMake-3.9-064F8C?logo=CMake\n\n[compilation_tool_link]: https://cmake.org/\n\n[unit_testing_badge]: https://img.shields.io/badge/GTest-1.11.0-4285F4?logo=Google\n\n[unit_testing_link]: https://developer.apple.com/library/archive/documentation/ToolsLanguages/Conceptual/Xcode_Overview/UnitTesting.html\n\n[gh_challenges_badge]: https://github.com/cdalvaro/project-euler/actions/workflows/tests.yml/badge.svg?branch=main\n\n[gh_challenges_link]: https://github.com/cdalvaro/project-euler/actions/workflows/tests.yml\n\n[codecov_badge]: https://codecov.io/gh/cdalvaro/project-euler/branch/main/graph/badge.svg?token=O8ZAI16P6C\n\n[codecov_link]: https://codecov.io/gh/cdalvaro/project-euler\n\n[codacy_badge]: https://app.codacy.com/project/badge/Grade/098449f7656b4d019b39d6b11f216066\n\n[codacy_link]: https://www.codacy.com/gh/cdalvaro/project-euler\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdalvaro%2Fproject-euler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdalvaro%2Fproject-euler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdalvaro%2Fproject-euler/lists"}