{"id":19337723,"url":"https://github.com/theabhishek07/hacker_rank","last_synced_at":"2026-06-18T15:31:46.737Z","repository":{"id":101248021,"uuid":"255979383","full_name":"theabhishek07/HACKER_RANK","owner":"theabhishek07","description":"This Repository was made to maintain various Programs with their suitable solutions in a single space.","archived":false,"fork":false,"pushed_at":"2020-08-01T08:57:07.000Z","size":93,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-16T15:36:18.725Z","etag":null,"topics":["1d-array","strings"],"latest_commit_sha":null,"homepage":"","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/theabhishek07.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2020-04-15T16:45:32.000Z","updated_at":"2020-08-01T08:57:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"57b27380-1c91-4761-b7ec-a13f497be1fc","html_url":"https://github.com/theabhishek07/HACKER_RANK","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theabhishek07/HACKER_RANK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theabhishek07%2FHACKER_RANK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theabhishek07%2FHACKER_RANK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theabhishek07%2FHACKER_RANK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theabhishek07%2FHACKER_RANK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theabhishek07","download_url":"https://codeload.github.com/theabhishek07/HACKER_RANK/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theabhishek07%2FHACKER_RANK/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34497201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"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":["1d-array","strings"],"created_at":"2024-11-10T03:15:18.401Z","updated_at":"2026-06-18T15:31:46.716Z","avatar_url":"https://github.com/theabhishek07.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HACKER_RANK :smiley:\nWelcome to HACKER_RANK 📋\nThis Repository was made to maintain various Programs with their suitable solutions in a single space. This Repository is maintained by [theabhishek07](https://github.com/theabhishek07) .This is a public Repository and all sorts of contributions to the code are welcomed.\n## You are always welcome to add more or improve any resource in this repository.\n\n# Steps to follow 📜\n## 1. Fork it 🍴\nYou can get your own fork/copy of [HACKER_RANK](https://github.com/theabhishek07/HACKER_RANK) by using the `Fork` button\n\n![Fork Button](https://github-images.s3.amazonaws.com/help/bootcamp/Bootcamp-Fork.png)\n\n## 2. Clone it 👥\nYou need to go to your Fork of the Repository and then clone (download) it to local machine using\n\n`$ git clone https://github.com/Your_Username/HACKER_RANK.git`\nThis makes a local copy of repository in your machine.\n\nOnce you have cloned the `HACKER_RANK` repository in Github, move to that folder first using change directory command on linux and Mac.\n```python\n## This will change directory to a folder HACKER_RANK\n$ cd HACKER_RANK\n```\nMove to this folder for all other commands.\n\nNow, lets add a reference to the original `HACKER_RANK` repository using\n\n`$ git remote add upstream https://github.com/theabhishek07/HACKER_RANK.git`\nThis adds a new remote named *_upstream_*.\n\nSee the changes using\n```python\n$ git remote -v\n\n  origin https://github.com/Your_Username/HACKER_RANK.git (fetch).\n  origin https://github.com/Your_Username/HACKER_RANK.git (push).\n  upstream https://github.com/theabhishek07/HACKER_RANK.git (fetch).\n  upstream  https://github.com/theabhishek07/HACKER_RANK.git (push).\n  ```\n\n## 3. Sync with the Remote :arrows_counterclockwise:\nAlways keep your local copy of repository updated with the original repository.\n```python\n# Fetch all remote repositories and delete any deleted remote branches\n$ git fetch --all --prune\n# Switch to master branch\n$ git checkout master\n# Reset local master branch to match upstream repository's master branch\n$ git reset --hard upstream/master\n# Push changes to your forked HACKER_RANK repo\n$ git push origin master\n```\n## 4. Create a new branch ‼️\nWhenever you are going to make a contribution. Please create a new branch using the command below and keep your master branch clean (i.e. synced with remote branch).\n```python\n# It will create a new branch with name  \u003cbranchname\u003e and switch to branch \u003cbranchname\u003e\n$ git checkout -b \u003cbranchname\u003e\n  ```\nTo switch to desired branch\n```python\n# To switch from one folder to other\n$ git checkout \u003cbranchname\u003e\n  ```\nTo add the changes to the branch. Use\n```python\n# To add all files to branch\n$ git add .\n```\nType in a message relevant for the code reveiwer using\n```python\n# This message get associated with all files you have changed\n$ git commit -m \"relevant message\"\n```\nNow, Push your awesome work to your remote repository using\n```python\n# To push your work to your remote repository\n$ git push -u origin \u003cbranchname\u003e\n```\nFinally, go to your repository in browser and click on `compare and pull requests`. Then add a title and description to your pull request that explains your precious effort.\n\n# LICENSE\n[License](https://github.com/theabhishek07/HACKER_RANK/blob/master/LICENSE)\n# CODE_OF_CONDUCT\n[CODE_OF_CONDUCT](https://github.com/theabhishek07/HACKER_RANK/blob/master/CODE_OF_CONDUCT.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheabhishek07%2Fhacker_rank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheabhishek07%2Fhacker_rank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheabhishek07%2Fhacker_rank/lists"}