{"id":27796245,"url":"https://github.com/knlsharma/competitive-programming-cp","last_synced_at":"2025-04-30T20:15:08.651Z","repository":{"id":46641275,"uuid":"181349073","full_name":"Knlsharma/Competitive-Programming-cp","owner":"Knlsharma","description":"This repository contains some useful codes, techniques, algorithms and problem solutions helpful in Competitive Coding. Join with me on telegram group https://t.me/joinchat/GL4Y8RREZbz","archived":false,"fork":false,"pushed_at":"2022-03-20T06:25:02.000Z","size":126,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-30T20:15:04.567Z","etag":null,"topics":["algo-ds-notes","algorithm","code","competitive-programming","data-structures","language","problem-solving","telegram-group"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Knlsharma.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-14T18:06:36.000Z","updated_at":"2021-10-02T07:12:01.000Z","dependencies_parsed_at":"2022-09-19T19:02:46.339Z","dependency_job_id":null,"html_url":"https://github.com/Knlsharma/Competitive-Programming-cp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Knlsharma%2FCompetitive-Programming-cp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Knlsharma%2FCompetitive-Programming-cp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Knlsharma%2FCompetitive-Programming-cp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Knlsharma%2FCompetitive-Programming-cp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Knlsharma","download_url":"https://codeload.github.com/Knlsharma/Competitive-Programming-cp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251774920,"owners_count":21641732,"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":["algo-ds-notes","algorithm","code","competitive-programming","data-structures","language","problem-solving","telegram-group"],"created_at":"2025-04-30T20:15:08.010Z","updated_at":"2025-04-30T20:15:08.645Z","avatar_url":"https://github.com/Knlsharma.png","language":"Java","readme":"[![Gitter](https://badges.gitter.im/Algo_Ds_Notes/Algo_Ds_Notes.svg)](https://gitter.im/Knlsharma)\n\nJoin with me on telegram group https://t.me/joinchat/GL4Y8RREZbz\n\n## Welcome to Algorithm and Data Structure Notes :clipboard:\n\nOur open source community is focussed on understanding the concepts and while doing so, whenever someone gets trapped, they can see one way to code in any language they want. So, we are developing a repository having implementation in as many languages as we can.\n\n\u003e [Index](INDEX.md)\n\n## Steps to follow :scroll:\n\n### 1. Fork it :fork_and_knife:\n\nYou can get your own fork/copy of [Algo_Ds_Notes](https://github.com/jainaman224/Algo_Ds_Notes) by using the \u003ca href=\"https://github.com/jainaman224/Algo_Ds_Notes/new/master?readme=1#fork-destination-box\"\u003e\u003ckbd\u003e\u003cb\u003eFork\u003c/b\u003e\u003c/kbd\u003e\u003c/a\u003e button or clicking [this](https://github.com/jainaman224/Algo_Ds_Notes/new/master?readme=1#fork-destination-box).\n\n [![Fork Button](https://help.github.com/assets/images/help/repository/fork_button.jpg)](https://github.com/jainaman224/Algo_Ds_Notes)\n\n### 2. Clone it :busts_in_silhouette:\n\nYou need to clone (download) it to local machine using\n\n```sh\n$ git clone https://github.com/Your_Username/Algo_Ds_Notes.git\n```\n\n\u003e This makes a local copy of repository in your machine.\n\nOnce you have cloned the `Algo_Ds_Notes` repository in Github, move to that folder first using change directory command on linux and Mac.\n\n```sh\n# This will change directory to a folder Algo_Ds_Notes\n$ cd Algo_Ds_Notes\n```\n\nMove to this folder for all other commands.\n\n### 3. Set it up :arrow_up:\n\nRun the following commands to see that *your local copy* has a reference to *your forked remote repository* in Github :octocat:\n\n```sh\n$ git remote -v\norigin  https://github.com/Your_Username/Algo_Ds_Notes.git (fetch)\norigin  https://github.com/Your_Username/Algo_Ds_Notes.git (push)\n```\n\nNow, lets add a reference to the original [Algo_Ds_Notes](https://github.com/jainaman224/Algo_Ds_Notes) repository using\n\n```sh\n$ git remote add upstream https://github.com/jainaman224/Algo_Ds_Notes.git\n```\n\n\u003e This adds a new remote named ***upstream***.\n\nSee the changes using\n\n```sh\n$ git remote -v\norigin    https://github.com/Your_Username/Algo_Ds_Notes.git (fetch)\norigin    https://github.com/Your_Username/Algo_Ds_Notes.git (push)\nupstream  https://github.com/jainaman224/Algo_Ds_Notes.git (fetch)\nupstream  https://github.com/jainaman224/Algo_Ds_Notes.git (push)\n```\n\n### 4. Sync it :recycle:\n\nAlways keep your local copy of repository updated with the original repository.\nBefore making any changes and/or in an appropriate interval, run the following commands *carefully* to update your local repository.\n\n```sh\n# Fetch all remote repositories and delete any deleted remote branches\n$ git fetch --all --prune\n\n# Switch to `master` branch\n$ git checkout master\n\n# Reset local `master` branch to match `upstream` repository's `master` branch\n$ git reset --hard upstream/master\n\n# Push changes to your forked `Algo_Ds_Notes` repo\n$ git push origin master\n```\n\n### 5. Ready Steady Go... :turtle: :rabbit2:\n\nOnce you have completed these steps, you are ready to start contributing by checking our `Help Wanted` Issues and creating [pull requests](https://github.com/jainaman224/Algo_Ds_Notes/pulls).\n\n### 6. Create a new branch :bangbang:\n\nWhenever you are going to make contribution. Please create seperate branch using command and keep your `master` branch clean (i.e. synced with remote branch).\n\n```sh\n# It will create a new branch with name Branch_Name and switch to branch Folder_Name\n$ git checkout -b Folder_Name\n```\n\nCreate a seperate branch for contibution and try to use same name of branch as of folder.\n\nTo switch to desired branch\n\n```sh\n# To switch from one folder to other\n$ git checkout Folder_Name\n```\n\nTo add the changes to the branch. Use\n\n```sh\n# To add all files to branch Folder_Name\n$ git add .\n```\n\nType in a message relevant for the code reveiwer using\n\n```sh\n# This message get associated with all files you have changed\n$ git commit -m 'relevant message'\n```\n\nNow, Push your awesome work to your remote repository using\n\n```sh\n# To push your work to your remote repository\n$ git push -u origin Folder_Name\n```\n\nFinally, go to your repository in browser and click on `compare and pull requests`.\nThen add a title and description to your pull request that explains your precious effort.\n\n## Help Contributing Guides :crown:\n\nWe love to have `articles` and `codes` in different languages and `betterment` of existing ones.\n\nPlease discuss it with us first by creating new issue.\n\n:tada: :confetti_ball: :smiley: _**Happy Contributing**_ :smiley: :confetti_ball: :tada:\n\n\n\n## References :clipboard: :scroll:\n\n- Books :book: :books:\n    - Data Structures with C by Schaum Series\n    - Data Structures: A Pseudocode Approach with C by Richard F. Gilberg\n    - Fundamentals Of Data Structures in C by Horowitz\n    - Introduction To Algorithms By Thomas H. Cormen\n    - Java: The Complete Reference By Herbert Schildt\n    - Object Oriented Programming with C++ by E Balaguruswamy\n- Websites :computer:\n    - [GeeksforGeeks](http://www.geeksforgeeks.org)\n    - [hackerearth](https://www.hackerearth.com/notes)\n    - [topcoder](https://www.topcoder.com/community/data-science/data-science-tutorials)\n    - [tutorialspoint](http://www.tutorialspoint.com)\n    - [Wikipedia](https://en.wikipedia.org)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknlsharma%2Fcompetitive-programming-cp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknlsharma%2Fcompetitive-programming-cp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknlsharma%2Fcompetitive-programming-cp/lists"}