{"id":48578662,"url":"https://github.com/rajat19/interview-questions","last_synced_at":"2026-04-08T16:05:09.274Z","repository":{"id":41848502,"uuid":"454482224","full_name":"rajat19/interview-questions","owner":"rajat19","description":"Top interview questions","archived":false,"fork":false,"pushed_at":"2025-06-26T21:19:40.000Z","size":4298,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T22:51:33.161Z","etag":null,"topics":["algorithms","coding-interviews","datastructure","ds-algo","hacktoberfest","hacktoberfest-accepted","interview","interview-questions","leetcode-solutions"],"latest_commit_sha":null,"homepage":"https://rajat19.github.io/interview-questions/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rajat19.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2022-02-01T17:24:45.000Z","updated_at":"2025-06-26T21:19:44.000Z","dependencies_parsed_at":"2025-06-19T21:33:29.678Z","dependency_job_id":null,"html_url":"https://github.com/rajat19/interview-questions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"rajat19/jekyll-dark-coder-template","purl":"pkg:github/rajat19/interview-questions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajat19%2Finterview-questions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajat19%2Finterview-questions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajat19%2Finterview-questions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajat19%2Finterview-questions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rajat19","download_url":"https://codeload.github.com/rajat19/interview-questions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajat19%2Finterview-questions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31562731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["algorithms","coding-interviews","datastructure","ds-algo","hacktoberfest","hacktoberfest-accepted","interview","interview-questions","leetcode-solutions"],"created_at":"2026-04-08T16:05:08.358Z","updated_at":"2026-04-08T16:05:09.268Z","avatar_url":"https://github.com/rajat19.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Interview Questions\n\n![Languages count](https://img.shields.io/github/languages/count/rajat19/interview-questions.svg?style=for-the-badge)\n![Top Language](https://img.shields.io/github/languages/top/rajat19/interview-questions.svg?style=for-the-badge)\n![License](https://img.shields.io/github/license/rajat19/interview-questions?style=for-the-badge)\n![Last Commit](https://img.shields.io/github/last-commit/rajat19/interview-questions?style=for-the-badge)\n\nA collection of top interview questions asked in DSA rounds of companies. The project is build over jekyll.\n\nThe project contains solutions of the questions in multiple languages, the questions are also tagged with topics and companies.\n\nSee list of supported languages and platforms, check\n1. [languages](_data/languages.yml)\n2. [platforms](_data/platforms.yml)\n\nFolks can also login using google (supported through Firebase) and bookmark questions and view their bookmarked questions.\n\nWebsite: [interview-questions](https://rajat19.github.io/interview-questions/)\n\n![Screenshot](assets/img/global/ss3.png)\n\n![Recording](assets/img/global/recording.gif)\n\nQuestions are present inside [posts](/posts) folder, with their working solutions available in [code](_includes/code) folder\n\n### Sample coding question post [hello-world.md](/hello-world.md)\n\n```markdown\n---\nlayout: post\ntitle: Hello World\ntopics: string\nlangs: java py c cpp go js php cs rb rust scala kt\ntc: O(1)\nsc: O(1)\nleetid: 0\n---\n\nPrint Hello appended by input string\n\n---\n\n## Test Cases\n\n**Input:** \n\t\n\t(string) s = \"World\"\n\n**Output:** \n\n\t(string) \"Hello World\"\n```\n\n### Setup:\nThe project is build over `jekyll` and `ruby`\n\nRuby setup is complex on macbook so it is recommended to use `rbenv` or `rvm` to manage ruby versions.\nCheck GitHub pages supported ruby versions [here](https://pages.github.com/versions/).\n1. Install `rbenv`\n   ```shell\n   brew install rbenv\n   ```\n2. Install ruby latest version\n   ```shell\n   rbenv install 3.3.4\n   ```\n3. Set the local ruby version for the project\n   ```shell\n    rbenv local 3.3.4\n    ```\n4. Add rbenv ruby path to your shell configuration file (e.g., `~/.bashrc`, `~/.zshrc`)\n   ```shell\n   echo 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' \u003e\u003e ~/.bashrc\n   echo 'eval \"$(rbenv init -)\"' \u003e\u003e ~/.bashrc\n   source ~/.bashrc\n   ```\n\nTo start the project\n1. Install bundles using\n   ```shell\n   bundle install\n   ```\n2. Serve the website (using local bundle files)\n   ```shell \n   bundle exec jekyll serve\n   ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frajat19%2Finterview-questions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frajat19%2Finterview-questions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frajat19%2Finterview-questions/lists"}