{"id":21497857,"url":"https://github.com/saiyamdubey/dsa_questions","last_synced_at":"2025-07-15T20:30:41.484Z","repository":{"id":216864531,"uuid":"742549218","full_name":"saiyamdubey/DSA_Questions","owner":"saiyamdubey","description":"This is my collection of solved DSA questions ... I am Prepairing for the Interview perspective ..","archived":false,"fork":false,"pushed_at":"2024-09-14T20:20:09.000Z","size":1063,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-09-15T05:12:19.152Z","etag":null,"topics":["arrarys","binary-search","cpp","cprogramming","hackerrank","leetcode-solutions","sliding-window","sorting-algorithms","two-pointers"],"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/saiyamdubey.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":"2024-01-12T18:16:08.000Z","updated_at":"2024-09-14T20:20:12.000Z","dependencies_parsed_at":"2024-02-20T18:55:58.888Z","dependency_job_id":"7117990c-7c53-464b-ad58-9b7acebae88f","html_url":"https://github.com/saiyamdubey/DSA_Questions","commit_stats":null,"previous_names":["saiyamdubey/dsa_questions"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saiyamdubey%2FDSA_Questions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saiyamdubey%2FDSA_Questions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saiyamdubey%2FDSA_Questions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saiyamdubey%2FDSA_Questions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saiyamdubey","download_url":"https://codeload.github.com/saiyamdubey/DSA_Questions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226066547,"owners_count":17568419,"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":["arrarys","binary-search","cpp","cprogramming","hackerrank","leetcode-solutions","sliding-window","sorting-algorithms","two-pointers"],"created_at":"2024-11-23T16:27:05.505Z","updated_at":"2024-11-23T16:27:06.084Z","avatar_url":"https://github.com/saiyamdubey.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structures and Algorithms (DSA) Practice 🔆\nThis repository contains solutions to various Data Structures and Algorithms (DSA) questions implemented in C/C++. The purpose of this repository is to provide a resource for individuals studying DSA to practice and understand different problem-solving techniques.\n\n### Table of Contents\nIntroduction\nDirectory Structure\nGetting Started\nContribution Guidelines\nLicense\nIntroduction\nData Structures and Algorithms are fundamental concepts in computer science and play a crucial role in writing efficient and scalable code. This repository aims to help you strengthen your understanding of DSA by providing solutions to a variety of problems.\n\nEach problem is categorized based on its difficulty level and the specific DSA topic it covers. The solutions are implemented in C/C++ for clarity and simplicity.\n\n#### Directory Structure\nThe repository is organized as follows:\n\nmathematica\nCopy code\n\n\n├── Arrays \u003cbr\u003e\n│   ├── 01_TwoSum.cpp \u003cbr\u003e\n│   ├── 02_ThreeSum.cpp\u003cbr\u003e\n│   └── ... \u003cbr\u003e\n├── LinkedLists \u003cbr\u003e\n│   ├── 01_ReverseLinkedList.cpp \u003cbr\u003e\n│   ├── 02_DetectCycle.cpp \u003cbr\u003e\n│   └── ... \u003cbr\u003e\n├── Trees\n│   ├── 01_InOrderTraversal.cpp \u003cbr\u003e\n│   ├── 02_LevelOrderTraversal.cpp \u003cbr\u003e\n│   └── ... \u003cbr\u003e\n├── Sorting \u003cbr\u003e\n│   ├── 01_BubbleSort.cpp \u003cbr\u003e\n│   ├── 02_QuickSort.cpp \u003cbr\u003e\n│   └── ... \u003cbr\u003e\n├── Searching \u003cbr\u003e\n│   ├── 01_BinarySearch.cpp \u003cbr\u003e\n│   ├── 02_LinearSearch.cpp \u003cbr\u003e\n│   └── ... \u003cbr\u003e\n├── DynamicProgramming \u003cbr\u003e\n│   ├── 01_Fibonacci.cpp \u003cbr\u003e\n│   ├── 02_LongestCommonSubsequence.cpp \u003cbr\u003e\n│   └── ... \u003cbr\u003e\n└── README.md \u003cbr\u003e\n\nFeel free to add new problems or suggest improvements to the existing ones.\n\n#### Getting Started\nClone the repository to your local machine:\n\n``` bash\ngit clone https://github.com/your-username/DSA-Practice.git\nNavigate to the specific topic directory you want to work on:\n```\n\n```bash\ncd DSA-Practice/Arrays\nChoose a problem (e.g., 01_TwoSum.cpp) and open it in your preferred text editor or IDE.\n```\nImplement your solution.\n\nTest your solution with sample inputs and make sure it produces the expected output.\n\nAdd, commit, and push your changes to your forked repository:\n\nbash\nCopy code\ngit add .\ngit commit -m \"Add solution for TwoSum problem\"\ngit push origin master\nCreate a pull request to the main repository.\n\n### Contribution Guidelines\nContributions are welcome! Follow these guidelines to contribute:\n\n#### Fork the repository.\nCreate a new branch for your feature or bug fix: git checkout -b feature/new-feature.\nMake your changes and test thoroughly.\nAdd, commit, and push your changes to your forked repository.\nCreate a pull request to the main repository.\nPlease make sure your code follows the existing coding style, and include a clear and concise description of your changes in the pull request.\n\nLicense\nThis repository is licensed under the MIT License - see the LICENSE file for details. Feel free to use the code for personal or educational purposes.\n\n## Happy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaiyamdubey%2Fdsa_questions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaiyamdubey%2Fdsa_questions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaiyamdubey%2Fdsa_questions/lists"}