Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kushalseth/datastructure
I will build the logic, code and then debug the coding problems in my youtube series of #LogicCodeDebug. So, this is going to be a step by step solution of coding problems. I believe, everyone has it's own way of learning. For few problems, it's easy to understand by just seeing the Logic but for few we need to debug them.
https://github.com/kushalseth/datastructure
100daysofalgorithm 100daysofcode 30daysofcode algorithm-challenges algorithms algorithms-and-data-structures cracking-the-coding-interview csharp datastructures geeks hackerrank-solutions java logiccodedebug python recursion
Last synced: 11 days ago
JSON representation
I will build the logic, code and then debug the coding problems in my youtube series of #LogicCodeDebug. So, this is going to be a step by step solution of coding problems. I believe, everyone has it's own way of learning. For few problems, it's easy to understand by just seeing the Logic but for few we need to debug them.
- Host: GitHub
- URL: https://github.com/kushalseth/datastructure
- Owner: kushalseth
- Created: 2015-04-18T19:18:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-08T01:48:18.000Z (4 months ago)
- Last Synced: 2024-09-08T03:08:57.273Z (4 months ago)
- Topics: 100daysofalgorithm, 100daysofcode, 30daysofcode, algorithm-challenges, algorithms, algorithms-and-data-structures, cracking-the-coding-interview, csharp, datastructures, geeks, hackerrank-solutions, java, logiccodedebug, python, recursion
- Language: JavaScript
- Homepage:
- Size: 18.6 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![#1589F0](https://via.placeholder.com/15/1589F0/000000?text=+) `#LogicCodeDebug` ![#f03c15](https://via.placeholder.com/15/f03c15/000000?text=+) `#100DaysOfAlgorithms` ![#c5f015](https://via.placeholder.com/15/c5f015/000000?text=+) `CodeForces` ![#1589F0](https://via.placeholder.com/15/1589F0/000000?text=+) `LeetCode` ![#f03c15](https://via.placeholder.com/15/f03c15/000000?text=+) `KickStart` ![#c5f015](https://via.placeholder.com/15/c5f015/000000?text=+) `SPOJ` ![#1589F0](https://via.placeholder.com/15/1589F0/000000?text=+) `HackerRank` ![#1589F0](https://via.placeholder.com/15/1589F0/000000?text=+) `GeeksForGeek` ![#1589F0](https://via.placeholder.com/15/1589F0/000000?text=+) `CodeChef`
I will build the logic, code and then debug the coding problems in my youtube series of #LogicCodeDebug. So, this is going to be a step by step solution of coding problems. I believe, everyone has it's own way of learning. For few problems, it's easy to understand by just seeing the Logic but for few we need to debug them.
Please join me in this Journey. If it's helpful, please give Star on GitHub, each star is a motivation.
I will be covering all the topics with videos at my channel: https://www.youtube.com/user/kushalseth1408. I love to connect with people, Let's connect and learn together.
## Arrays
| # | Title | YouTube Link | Solution | Notes |
| --- | ---------------------------------------------------------------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- |
| 1 | [Second Largest element in array](https://www.youtube.com/watch?v=angBdWeAxd8) | https://www.youtube.com/watch?v=angBdWeAxd8 |
- [C#](https://github.com/kushalseth/DataStructure/blob/master/CodingProblems/CodingProblems/ArrayProblems/SecondLargestInArray.cs)
- [Java](https://github.com/kushalseth/DataStructure/blob/master/javadatastructure/src/Main.java)
- [C#](https://github.com/kushalseth/DataStructure/blob/master/CodingProblems/CodingProblems/ArrayProblems/ArrayIsSorted.cs)
- [Java](https://github.com/kushalseth/DataStructure/blob/master/javadatastructure/src/Main.java)
- [C#](https://github.com/kushalseth/DataStructure/blob/master/CodingProblems/CodingProblems/ArrayProblems/ReverseArray.cs)
- [Java](https://github.com/kushalseth/DataStructure/blob/master/javadatastructure/src/Main.java)
- [C#](https://github.com/kushalseth/DataStructure/blob/master/CodingProblems/CodingProblems/ArrayProblems/RemoveDuplicatesFromSortedArray.cs)
- [Java](https://github.com/kushalseth/DataStructure/blob/master/javadatastructure/src/Main.java)
- [C#](https://github.com/kushalseth/DataStructure/blob/master/CodingProblems/CodingProblems/ArrayProblems/MoveZerosToEndOfArray.cs)
- [Java](https://github.com/kushalseth/DataStructure/blob/master/javadatastructure/src/Main.java)
- | |
| 2 | [Check if an array is sorted, return true or false](www.youtube.com/watch?v=Ysao5AoeeNc) | www.youtube.com/watch?v=Ysao5AoeeNc |
- | |
| 3 | [Reverse an Array](www.youtube.com/watch?v=GJpdnbIdeTI) | www.youtube.com/watch?v=GJpdnbIdeTI |
- | |
| 4 | [Remove Duplicates from Sorted Array](www.youtube.com/watch?v=u61tFxyIHq4) | www.youtube.com/watch?v=u61tFxyIHq4 |
- | |
| 5 | [Move all zeros to end of Array](www.youtube.com/watch?v=HymuKVb-oME) | www.youtube.com/watch?v=HymuKVb-oME |
- | |