{"id":31826960,"url":"https://github.com/naveennk045/dsa-solutions-hub","last_synced_at":"2025-10-11T17:48:55.634Z","repository":{"id":261344360,"uuid":"884006029","full_name":"naveennk045/dsa-solutions-hub","owner":"naveennk045","description":"This repository contains solutions to various Data Structures and Algorithms (DSA) problems, implemented in Java. The problems cover a wide range of topics, including Arrays, Strings, Recursion, Linked Lists, Trees, Graphs, Dynamic Programming, Greedy Algorithms, and more. Each solution is optimized for performance and follows best coding practices","archived":false,"fork":false,"pushed_at":"2025-10-05T12:53:47.000Z","size":537,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"cp-solutions","last_synced_at":"2025-10-05T14:46:12.616Z","etag":null,"topics":["dsa-algorithm","dsa-java","dsa-practice","dsa-questions","java"],"latest_commit_sha":null,"homepage":"","language":"Java","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/naveennk045.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-06T00:54:10.000Z","updated_at":"2025-10-05T12:53:50.000Z","dependencies_parsed_at":"2024-11-06T03:34:02.273Z","dependency_job_id":"1f3fc132-fe67-43f9-95b0-8f866ef4837a","html_url":"https://github.com/naveennk045/dsa-solutions-hub","commit_stats":null,"previous_names":["naveennk045/problemsolving","naveennk045/problemsolving-java","naveennk045/dsa-solutions-hub"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/naveennk045/dsa-solutions-hub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveennk045%2Fdsa-solutions-hub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveennk045%2Fdsa-solutions-hub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveennk045%2Fdsa-solutions-hub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveennk045%2Fdsa-solutions-hub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naveennk045","download_url":"https://codeload.github.com/naveennk045/dsa-solutions-hub/tar.gz/refs/heads/cp-solutions","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naveennk045%2Fdsa-solutions-hub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008139,"owners_count":26084397,"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-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["dsa-algorithm","dsa-java","dsa-practice","dsa-questions","java"],"created_at":"2025-10-11T17:48:51.160Z","updated_at":"2025-10-11T17:48:55.629Z","avatar_url":"https://github.com/naveennk045.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Problem Solving in Java\n\nThis repository contains solutions to various **Data Structures and Algorithms (DSA)** problems, implemented in Java. The problems cover a wide range of topics, including:\n\n- Arrays\n- Strings\n- Recursion\n- Linked Lists\n- Trees\n- Graphs\n- Dynamic Programming\n- Greedy Algorithms\n- And more!\n\nEach solution is optimized for performance and follows best coding practices. Feel free to refer to the solutions in this repository to learn and solve similar problems!\n\n---\n\n## Table of Contents\n\n1. [About the Project](#about-the-project)\n2. [Getting Started](#getting-started)\n3. [Folder Structure](#folder-structure)\n4. [How to Contribute](#how-to-contribute)\n5. [License](#license)\n\n---\n\n## About the Project\n\nThe goal of this repository is to provide clear and efficient solutions for common DSA problems. Each problem is accompanied by clean and well-documented code to help developers and students understand the concepts easily.\n\nYou can **refer to these solutions** to enhance your understanding or solve similar problems on your own.\n\n---\n\n## Getting Started\n\nTo use this repository, follow these steps:\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/naveennk045/ProblemSolving-Java.git\n   ```\n2. Navigate to the project directory:\n   ```bash\n   cd ProblemSolving-Java\n   ```\n3. Open the project in your favorite Java IDE (e.g., IntelliJ IDEA, Eclipse, or VS Code).\n\n---\n\n## Folder Structure\n\nThe repository is organized into directories based on problem categories. For example:\n\n```\nProblemSolving-Java/\n│\n├── Arrays/\n├── Strings/\n├── Recursion/\n.........\n│\n└── README.md\n```\n\nEach directory contains Java files for related problems, named intuitively based on the problem they solve.\n\n---\n\n## How to Contribute\n\nContributions are welcome! If you would like to contribute:\n\n1. Fork the repository.\n2. Create a feature branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Commit your changes:\n   ```bash\n   git commit -m \"Add your message here\"\n   ```\n4. Push to the branch:\n   ```bash\n   git push origin feature-name\n   ```\n5. Open a pull request.\n\nPlease make sure your contributions follow the repository's coding standards and are well-documented.\n\n---\n\n## License\n\nThis project is licensed under the MIT License.\n\n---\n\nHappy Coding! 🚀\n```\n\nLet me know if you'd like further modifications!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaveennk045%2Fdsa-solutions-hub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaveennk045%2Fdsa-solutions-hub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaveennk045%2Fdsa-solutions-hub/lists"}