{"id":20191508,"url":"https://github.com/jarhill0/codequest-2017","last_synced_at":"2025-07-23T10:36:44.921Z","repository":{"id":90535634,"uuid":"118233023","full_name":"jarhill0/codequest-2017","owner":"jarhill0","description":"Python 3 solutions to the 2017 US CodeQuest problems","archived":false,"fork":false,"pushed_at":"2018-01-20T10:36:13.000Z","size":4991,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-03T07:41:40.687Z","etag":null,"topics":["codequest","python3"],"latest_commit_sha":null,"homepage":null,"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/jarhill0.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}},"created_at":"2018-01-20T10:35:35.000Z","updated_at":"2018-01-20T10:36:41.000Z","dependencies_parsed_at":"2023-03-29T13:26:32.094Z","dependency_job_id":null,"html_url":"https://github.com/jarhill0/codequest-2017","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jarhill0/codequest-2017","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarhill0%2Fcodequest-2017","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarhill0%2Fcodequest-2017/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarhill0%2Fcodequest-2017/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarhill0%2Fcodequest-2017/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jarhill0","download_url":"https://codeload.github.com/jarhill0/codequest-2017/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jarhill0%2Fcodequest-2017/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266663804,"owners_count":23964845,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["codequest","python3"],"created_at":"2024-11-14T03:49:25.286Z","updated_at":"2025-07-23T10:36:44.900Z","avatar_url":"https://github.com/jarhill0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CodeQuest 2017 Python Solutions\n\nThese solutions are written in Python 3. They solve all 18 of the 2017 US problems. You can find the problems in\n[the PDF](https://github.com/jarhill0/codequest-2017/blob/master/ProblemPacket2017.pdf). I built these without \nlooking at the official Java solutions (are there official Python solutions? If there are, I didn't look at those \neither).\n\nEach problem's materials are in their own numbered directory. For example, `01/` contains, `01.py`, my solution to \nthe problem; `Prob01.in.example.txt`, the example input which was provided to contestants during the real \ncompetition; `Prob01.out.example.txt`, the example output which was provided to contestants during the real \ncompetition; `Prob01.in.txt`, the secret judging data which was used to determine whether a team's program was \nsuccessful; `Prob01.out.txt`, the expected outcome of that testing; and `my_output.txt`, the cleverly named output of\nmy own script (copied and pasted into a text file from terminal output).\n \nYou can verify that my solutions are the same as the expected solutions if you have git installed by running\n`python3 verify_solutions.py`.\n\nAnd, for your benefit as much as mine, here's a list of links directly to my solutions:\n\n- [Problem 01](https://github.com/jarhill0/codequest-2017/blob/master/01/01.py)\n- [Problem 02](https://github.com/jarhill0/codequest-2017/blob/master/02/02.py)\n- [Problem 03](https://github.com/jarhill0/codequest-2017/blob/master/03/03.py)\n- [Problem 04](https://github.com/jarhill0/codequest-2017/blob/master/04/04.py)\n- [Problem 05](https://github.com/jarhill0/codequest-2017/blob/master/05/05.py)\n- [Problem 06](https://github.com/jarhill0/codequest-2017/blob/master/06/06.py)\n- [Problem 07](https://github.com/jarhill0/codequest-2017/blob/master/07/07.py)\n- [Problem 08](https://github.com/jarhill0/codequest-2017/blob/master/08/08.py)\n- [Problem 09](https://github.com/jarhill0/codequest-2017/blob/master/09/09.py)\n- [Problem 10](https://github.com/jarhill0/codequest-2017/blob/master/10/10.py)\n- [Problem 11](https://github.com/jarhill0/codequest-2017/blob/master/11/11.py)\n- [Problem 12](https://github.com/jarhill0/codequest-2017/blob/master/12/12.py)\n- [Problem 13](https://github.com/jarhill0/codequest-2017/blob/master/13/13.py)\n- [Problem 14](https://github.com/jarhill0/codequest-2017/blob/master/14/14.py)\n- [Problem 15](https://github.com/jarhill0/codequest-2017/blob/master/15/15.py)\n- [Problem 16](https://github.com/jarhill0/codequest-2017/blob/master/16/16.py)\n- [Problem 17](https://github.com/jarhill0/codequest-2017/blob/master/17/17.py)\n- [Problem 18](https://github.com/jarhill0/codequest-2017/blob/master/18/18.py)\n\n\nEnjoy!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjarhill0%2Fcodequest-2017","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjarhill0%2Fcodequest-2017","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjarhill0%2Fcodequest-2017/lists"}