{"id":15027114,"url":"https://github.com/careercup/ctci-6th-edition","last_synced_at":"2025-05-13T19:04:52.110Z","repository":{"id":37467775,"uuid":"38415498","full_name":"careercup/CtCI-6th-Edition","owner":"careercup","description":"Cracking the Coding Interview 6th Ed. Solutions","archived":false,"fork":false,"pushed_at":"2024-08-04T15:06:57.000Z","size":21487,"stargazers_count":11415,"open_issues_count":144,"forks_count":4417,"subscribers_count":606,"default_branch":"master","last_synced_at":"2025-04-27T03:58:21.756Z","etag":null,"topics":["algorithms","careercup","cracking-the-coding-interview","data-structures","interview-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/careercup.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":"2015-07-02T06:28:46.000Z","updated_at":"2025-04-25T11:15:59.000Z","dependencies_parsed_at":"2024-10-14T10:40:27.970Z","dependency_job_id":"32f155a6-173e-4110-b6a3-b79abbdab1de","html_url":"https://github.com/careercup/CtCI-6th-Edition","commit_stats":{"total_commits":342,"total_committers":22,"mean_commits":"15.545454545454545","dds":0.6461988304093567,"last_synced_commit":"59018cfcb90292209275db1c4b3ed306d4b07d7f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/careercup%2FCtCI-6th-Edition","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/careercup%2FCtCI-6th-Edition/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/careercup%2FCtCI-6th-Edition/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/careercup%2FCtCI-6th-Edition/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/careercup","download_url":"https://codeload.github.com/careercup/CtCI-6th-Edition/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251085194,"owners_count":21533841,"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":["algorithms","careercup","cracking-the-coding-interview","data-structures","interview-questions","java"],"created_at":"2024-09-24T20:05:47.730Z","updated_at":"2025-04-27T03:58:25.084Z","avatar_url":"https://github.com/careercup.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CtCI-6th-Edition\nSolutions for [Cracking the Coding Interview 6th Edition](http://www.amazon.com/Cracking-Coding-Interview-6th-Edition/dp/0984782850) by [Gayle Laakmann McDowell](http://www.gayle.com/).\n\nCrowdsourcing solutions for every widely used programming language. **Contributions welcome**.\n\n## Cloning\n\nSolutions in Java are contained directly in this repo and are the same solutions found\nin [the book](http://www.amazon.com/Cracking-Coding-Interview-6th-Edition/dp/0984782850). Solutions in other programming languages are contributed by the community and each have\ntheir own dedicated repos which are referenced from this repo as git submodules. What this means for cloning:\n\n- If you want to make a local clone of solutions in all languages, you should use the `--recursive` option:\n\n        git clone --recursive https://github.com/careercup/CtCI-6th-Edition.git\n\n- If you're only interested in the Java solutions:\n\n        git clone https://github.com/careercup/CtCI-6th-Edition.git\n\n- If you originally cloned without `--recursive`, and then later decide you want the git submodules too, run:\n\n        git submodule update --init --recursive\n\n## Contributing\n\n### Work Flow\n1. Fork the appropriate repo for your language to your GitHub user. (see [Where to submit pull requests](#where-to-submit-pull-requests))\n2. Write quality code and lint if applicable.\n3. Add tests if applicable.\n4. Open a pull request and provide a descriptive comment for what you did.\n\n### Where to submit pull requests\n\nPull requests pertaining to Java solutions should be submitted to the main [CtCI-6th-Edition repo](https://github.com/careercup/CtCI-6th-Edition). Please submit pull requests for all other languages to the appropriate language-specific repo.\n\n- [CtCI-6th-Edition-Clojure](https://github.com/careercup/CtCI-6th-Edition-Clojure)\n- [CtCI-6th-Edition-C](https://github.com/careercup/CtCI-6th-Edition-C)\n- [CtCI-6th-Edition-cpp](https://github.com/careercup/CtCI-6th-Edition-cpp)\n- [CtCI-6th-Edition-CSharp](https://github.com/careercup/CtCI-6th-Edition-CSharp)\n- [CtCI-6th-Edition-Go](https://github.com/careercup/CtCI-6th-Edition-Go)\n- [CtCI-6th-Edition-Groovy](https://github.com/careercup/CtCI-6th-Edition-Groovy)\n- [CtCI-6th-Edition-Haskell](https://github.com/careercup/CtCI-6th-Edition-Haskell)\n- [CtCI-6th-Edition-JavaScript](https://github.com/careercup/CtCI-6th-Edition-JavaScript)\n- [CtCI-6th-Edition-JavaScript-ES2015](https://github.com/careercup/CtCI-6th-Edition-JavaScript-ES2015)\n- [CtCI-6th-Edition-Julia](https://github.com/careercup/CtCI-6th-Edition-Julia)\n- [CtCI-6th-Edition-Kotlin](https://github.com/careercup/CtCI-6th-Edition-Kotlin)\n- [CtCI-6th-Edition-Objective-C](https://github.com/careercup/CtCI-6th-Edition-Objective-C)\n- [CtCI-6th-Edition-php](https://github.com/careercup/CtCI-6th-Edition-php)\n- [CtCI-6th-Edition-Python](https://github.com/careercup/CtCI-6th-Edition-Python)\n- [CtCI-6th-Edition-Ruby](https://github.com/careercup/CtCI-6th-Edition-Ruby)\n- [CtCI-6th-Edition-Swift](https://github.com/careercup/CtCI-6th-Edition-Swift)\n\n### Adding a new Language\n\nSolutions in other languages are welcome too and should follow this workflow:\n\n1. Create the new repo under your own GitHub user account and start contributing solutions. The repo name should follow this naming convention: `CtCI-6th-Edition-\u003clanguage\u003e`.\n2. Open an [issue on the CtCI-6th-Edition repo](https://github.com/careercup/CtCI-6th-Edition/issues) to request that your solution repo be promoted to join the careercup GitHub organization and referenced from the main repo as a git submodule.\n3. If your request is approved, navigate to your repo's settings page and select the \"Transfer Ownership\" option, and specify \"careercup\" as the new owner.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcareercup%2Fctci-6th-edition","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcareercup%2Fctci-6th-edition","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcareercup%2Fctci-6th-edition/lists"}