All Projects → cruxrebels → Interviewbit

cruxrebels / Interviewbit

Licence: mit
Collection of Abhishek Agrawal's gists solutions for problems on https://www.interviewbit.com

Projects that are alternatives of or similar to Interviewbit

InterviewBit
Collection of solution for problems on InterviewBit
Stars: ✭ 77 (-53.61%)
Mutual labels:  hashing, linked-list, stack, queue, maps, arrays, dynamic-programming
Algodeck
An Open-Source Collection of 200+ Algorithmic Flash Cards to Help you Preparing your Algorithm & Data Structure Interview 💯
Stars: ✭ 4,441 (+2575.3%)
Mutual labels:  stack, dynamic-programming, linked-list, math, queue
Cracking The Coding Interview
Solutions for Cracking the Coding Interview - 6th Edition
Stars: ✭ 35 (-78.92%)
Mutual labels:  stack, linked-list, arrays, queue, string-manipulation
Coding Ninjas Java Solutions
This will have solutions to all the problems that are included in Coding Ninja's 2020 Java Course. Star the repo if you like it.
Stars: ✭ 32 (-80.72%)
Mutual labels:  stack, dynamic-programming, linked-list, arrays
Data-structures
Data Structures in Java
Stars: ✭ 13 (-92.17%)
Mutual labels:  linked-list, stack, queue, arrays
Data Structures With Go
Data Structures with Go Language
Stars: ✭ 121 (-27.11%)
Mutual labels:  stack, linked-list, arrays, queue
Algo Tree
Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
Stars: ✭ 166 (+0%)
Mutual labels:  stack, dynamic-programming, linked-list, queue
Data-Structure-Algorithm-Programs
This Repo consists of Data structures and Algorithms
Stars: ✭ 464 (+179.52%)
Mutual labels:  hashing, linked-list, stack, queue
Competitive Programming
Contains solutions and codes to various online competitive programming challenges and some good problems. The links to the problem sets are specified at the beginning of each code.
Stars: ✭ 65 (-60.84%)
Mutual labels:  linked-list, stack, queue, dynamic-programming
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-68.07%)
Mutual labels:  stack, linked-list, queue
Buckets Js
A complete, fully tested and documented data structure library written in pure JavaScript.
Stars: ✭ 1,128 (+579.52%)
Mutual labels:  stack, linked-list, queue
Data Structures
This repository contains some data structures implementation in C programming language. I wrote the tutorial posts about these data structures on my personal blog site in Bengali language. If you know Bengali then visit my site
Stars: ✭ 82 (-50.6%)
Mutual labels:  stack, linked-list, queue
Data Structures Algorithms
My implementation of 85+ popular data structures and algorithms and interview questions in Python 3 and C++
Stars: ✭ 273 (+64.46%)
Mutual labels:  dynamic-programming, linked-list, arrays
Javascript Datastructures Algorithms
📚 collection of JavaScript and TypeScript data structures and algorithms for education purposes. Source code bundle of JavaScript algorithms and data structures book
Stars: ✭ 3,221 (+1840.36%)
Mutual labels:  stack, linked-list, queue
Android interviews
🚀Everything you need to know to find a android job. 算法 / 面试题 / Android 知识点 🔥🔥🔥 总结不易,你的 star 是我最大的动力!
Stars: ✭ 510 (+207.23%)
Mutual labels:  stack, dynamic-programming, queue
Coding Interview Gym
leetcode.com , algoexpert.io solutions in python and swift
Stars: ✭ 451 (+171.69%)
Mutual labels:  stack, dynamic-programming, queue
Data Structures
Data-Structures using C++.
Stars: ✭ 121 (-27.11%)
Mutual labels:  hashing, linked-list, string-manipulation
Learningmasteringalgorithms C
Mastering Algorithms with C 《算法精解:C语言描述》源码及Xcode工程、Linux工程
Stars: ✭ 615 (+270.48%)
Mutual labels:  stack, linked-list, queue
Dsa Geeksclasses
DSA-Self Paced With Doubt Assistance Course Solutions in Python (Python 3)
Stars: ✭ 137 (-17.47%)
Mutual labels:  dynamic-programming, linked-list, arrays
Data Structures
Common data structures and algorithms implemented in JavaScript
Stars: ✭ 139 (-16.27%)
Mutual labels:  stack, linked-list, queue

InterviewBit

This repository is a collection of my gists (working ✅ code snippets passing all test cases on the InterviewBit online judge) solutions in the absolutely fantastic language, C++.

Edit: I've lately moved to Java hence trying to re-solve all the problems slowly and adding my Java solutions to this repo as well!

Hence, the solutions won't directly execute on your local IDE or compiler, the main() would need to be written and the solution's function would need to be invoked with appropriate inputs/test cases to run in standalone.

Notes:

  • Sometimes, multiple solutions/approaches have been provided with relevant comments in the solution file, these are being continuously updated as and when I find a more optimized solution. Be wary of copying two solutions separated by comments simultaneously to run/submit on InterviewBit's online judge. Both shall work individually.
  • I've used C++11 (list initialization, auto, emplace_back, etc) features in each and every solution.
  • The solutions also succinctly encompasses years of C++ industry programming experience and care has been taken to optimize even at the slightest visible portions of the code.
  • The code in this repo is completely original content and written by me. If you like what you see, don't forget to show your liking by ⭐️ing this repo.

How to contribute?

  1. Fork the repository 🍴
  2. Do the desired changes (add/delete/modify) ✏️
  3. Make sure you've followed the existing coding standards and pattern of pasting the entire problem statement with a link to the problem on InterviewBit. For reference, you can follow any existing file in this Repo. e.g. AddOneToNumber.cpp
  4. Attach a screenshot from InterviewBit showing that your solution was ACCEPTED by the online judge. I've been getting a lot of pull requests which are not Accepted by the online judge.
  5. Make a pull request

When should you contribute?

  • If your solution's time complexity ⏰ is better than the solution already present or,
  • If your solution's space complexity 💾 is better than the solution already present or,
  • If your solution is of the same time and space complexity but is more concise 📃. In this case, comment out the original solution & make a pull request with your solution or,
  • If your solution is of the same time and space complexity but is easier/more readable 📄 to understand or,
  • If you use the same solution as present in the main branch and have gone the extra mile to add short comments 📝 explaining what's happening or what's the rationale at that particular code line, wherever necessary. 🙏
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].