{"id":21635306,"url":"https://github.com/next-step-for-interview-prep/leetcode_codeforces_codechef-contests-solutions","last_synced_at":"2026-01-04T05:36:55.587Z","repository":{"id":212678546,"uuid":"731872510","full_name":"next-step-for-interview-prep/Leetcode_Codeforces_CodeChef-contests-solutions","owner":"next-step-for-interview-prep","description":"Repository containing my solutions to LeetCode, Codeforces, and CodeChef problems. Includes solutions submitted during contests as well as those solved post-contest as part of upsolving. Hope it helps!!","archived":false,"fork":false,"pushed_at":"2025-01-05T17:07:03.000Z","size":45,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-18T23:13:06.281Z","etag":null,"topics":["codechef-solutions","codeforces","competitive-programming-contests","data-structures-and-algorithms","leetcode-contests"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/next-step-for-interview-prep.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":"2023-12-15T04:36:47.000Z","updated_at":"2025-01-05T17:07:07.000Z","dependencies_parsed_at":"2023-12-15T15:54:42.199Z","dependency_job_id":"37f7a11a-429d-4775-be52-103d9f64d51a","html_url":"https://github.com/next-step-for-interview-prep/Leetcode_Codeforces_CodeChef-contests-solutions","commit_stats":null,"previous_names":["sarthak-0-sach/leetcode-contest-solutions","sarthak-0-sach/leetcode_codeforces_codechef-contests-solutions","next-step-for-interview-prep/leetcode_codeforces_codechef-contests-solutions"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-step-for-interview-prep%2FLeetcode_Codeforces_CodeChef-contests-solutions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-step-for-interview-prep%2FLeetcode_Codeforces_CodeChef-contests-solutions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-step-for-interview-prep%2FLeetcode_Codeforces_CodeChef-contests-solutions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/next-step-for-interview-prep%2FLeetcode_Codeforces_CodeChef-contests-solutions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/next-step-for-interview-prep","download_url":"https://codeload.github.com/next-step-for-interview-prep/Leetcode_Codeforces_CodeChef-contests-solutions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244320424,"owners_count":20434092,"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":["codechef-solutions","codeforces","competitive-programming-contests","data-structures-and-algorithms","leetcode-contests"],"created_at":"2024-11-25T03:20:46.609Z","updated_at":"2026-01-04T05:36:55.519Z","avatar_url":"https://github.com/next-step-for-interview-prep.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Competitive Programming Solutions 💻\n\n## Welcome! 👋\n\nThis repository contains my personal solutions to problems from **LeetCode**, **Codeforces**, and **CodeChef** contests. Here, you will find solutions that I submitted during the contests as well as additional problems solved afterward as part of my upsolving practice.\n\n## Table of Contents 📚\n\n- [Overview](#overview) 🌐\n- [Platforms](#platforms) 🔗\n- [Folder Structure](#folder-structure) 🗂️\n- [How to Use](#how-to-use) 📝\n- [Contributing](#contributing) 🤝\n- [License](#license) 📃\n\n## Overview 🌟\n\nCompetitive programming is an excellent way to enhance problem-solving skills and improve coding proficiency. This repository showcases my journey and growth through contests and practice problems from popular competitive programming platforms.\n\n## Platforms 🔗\n\nThe solutions are categorized based on the platforms:\n\n- **LeetCode**: Focuses on various data structures, algorithms, and problem-solving patterns.\n- **Codeforces**: Features a mix of challenging problems, suitable for practicing speed and precision.\n- **CodeChef**: Provides monthly contests and a wide range of practice problems for honing skills.\n\n## Folder Structure 📂\n\n```\n/root-directory\n|-- leetcode/                     # Solutions for LeetCode problems\n|   |-- problem-name-or-id/       # Each problem has its own folder\n|   |   |-- solution.cpp          # Solution file (C++)\n|-- codeforces/                   # Solutions for Codeforces contests\n|   |-- contest-id/               # Contest folders based on contest ID\n|   |   |-- problem-A.cpp         # Problem A solution\n|   |   |-- problem-B.cpp         # Problem B solution\n|-- codechef/                     # Solutions for CodeChef contests\n|   |-- contest-name/             # Contest folder based on name (e.g., START, COOKOFF)\n|   |   |-- problem-id.cpp        # Problem solution file\n|-- README.md                     # Project README file\n```\n\n## How to Use 📝\n\n1. Clone this repository to your local machine:\n   ```bash\n   git clone https://github.com/yourusername/competitive-programming-solutions.git\n   ```\n\n2. Navigate to the desired platform folder and locate the problem you need:\n   ```bash\n   cd leetcode/problem-name-or-id\n   ```\n\n3. Open the solution file in your preferred code editor.\n\n4. Run the code using your local compiler or an online IDE for testing.\n\n## Contributing 🤝\n\nContributions are welcome! If you have a more efficient solution or additional test cases for any problem, feel free to fork this repository, make your changes, and submit a pull request.\n\n## License 📃\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.\n\n**Happy Coding!** 😊🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnext-step-for-interview-prep%2Fleetcode_codeforces_codechef-contests-solutions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnext-step-for-interview-prep%2Fleetcode_codeforces_codechef-contests-solutions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnext-step-for-interview-prep%2Fleetcode_codeforces_codechef-contests-solutions/lists"}