{"id":20076156,"url":"https://github.com/data-miner00/codeforces","last_synced_at":"2025-07-26T15:15:25.695Z","repository":{"id":114297685,"uuid":"386225199","full_name":"data-miner00/codeforces","owner":"data-miner00","description":"My inefficient, naive and unoptimized solution to challenges on https://codeforces.com/","archived":false,"fork":false,"pushed_at":"2023-08-27T11:41:18.000Z","size":204,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-15T13:08:45.078Z","etag":null,"topics":["codeforces","cpp","leetcode"],"latest_commit_sha":null,"homepage":"","language":"C++","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/data-miner00.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":"2021-07-15T08:53:02.000Z","updated_at":"2023-07-30T00:03:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"9a958fe0-afcf-4c7f-b89d-ed36b84133e9","html_url":"https://github.com/data-miner00/codeforces","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/data-miner00/codeforces","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-miner00%2Fcodeforces","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-miner00%2Fcodeforces/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-miner00%2Fcodeforces/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-miner00%2Fcodeforces/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/data-miner00","download_url":"https://codeload.github.com/data-miner00/codeforces/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/data-miner00%2Fcodeforces/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265569556,"owners_count":23789756,"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":["codeforces","cpp","leetcode"],"created_at":"2024-11-13T15:01:18.394Z","updated_at":"2025-07-26T15:15:25.675Z","avatar_url":"https://github.com/data-miner00.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/data-miner00/codeforces/\"\u003e\n    \u003cimg src=\"https://cdn.iconscout.com/icon/free/png-256/code-forces-3521352-2944796.png\" alt=\"Logo\" height=\"50\"\u003e\n  \u003c/a\u003e\n\n\u003ch3 align=\"center\"\u003eCodeforces\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    A repository that stores solutions to various programming challenges.\n    \u003cbr /\u003e\n    \u003ca href=\"https://codeforces.com/problemset?order=BY_RATING_ASC\"\u003e\u003cstrong\u003eAccept the challenge »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://karimelghamry.github.io/Codeforces-Randomizer/\"\u003eRandomizer\u003c/a\u003e\n    ·\n    \u003ca href=\"https://leetcode.com/problemset/all/\"\u003eLeetcode\u003c/a\u003e\n    ·\n    \u003ca href=\"https://www.hackerrank.com/challenges/problem-solving/problem\"\u003eHackerrank\u003c/a\u003e\n    ·\n    \u003ca href=\"https://www.hackerearth.com/challenges/\"\u003eHackerEarth\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\nOriginally started out as a storage repository to store all of the solutions for challenges on [Codeforce](https://codeforces.com/problemset?order=BY_RATING_ASC), but have turned into storing other relevant challenges such as [Leetcode](https://leetcode.com/) and [Hackerrank](https://www.hackerrank.com/) as well.\n\nAdditionally, this repo is used to store code snippets for various concepts and operations that are commonly used, as well as documenting resources that can help to improve the programming skills.\n\n## Programming Language\n\nThe main language that are used in the challenges is C++, other languages such as Rust and Go will be featured from time to time.\n\n## Resources\n\n- C++\n  - [cs.niu](http://faculty.cs.niu.edu/~mcmahon/CS241/c241man/node1.html)\n  - [w3schools](https://www.w3schools.com/cpp/cpp_examples.asp)\n  - [Programiz](https://www.programiz.com/cpp-programming/examples)\n\n## Articles\n\n- C++\n  - [8 Neat C++ Programming Tricks You Should Know](https://betterprogramming.pub/8-neat-c-programming-tricks-you-should-know-be331b828be1)\n\n## Compilation\n\n### New\n\nJust copy the entire content for the solution into any executable `.cpp` source file and run.\n\n### Legacy\n\nInclude the relevant files in main.cpp and run\n\n```sh\ng++ attempts/4A/solution4A.cpp main.cpp -o main.out \u0026\u0026 main.out\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdata-miner00%2Fcodeforces","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdata-miner00%2Fcodeforces","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdata-miner00%2Fcodeforces/lists"}