Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)

    • | |
      | 2 | [Check if an array is sorted, return true or false](www.youtube.com/watch?v=Ysao5AoeeNc) | www.youtube.com/watch?v=Ysao5AoeeNc |

      • [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)

        • | |
          | 3 | [Reverse an Array](www.youtube.com/watch?v=GJpdnbIdeTI) | www.youtube.com/watch?v=GJpdnbIdeTI |

          • [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)

            • | |
              | 4 | [Remove Duplicates from Sorted Array](www.youtube.com/watch?v=u61tFxyIHq4) | www.youtube.com/watch?v=u61tFxyIHq4 |

              • [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)

                • | |
                  | 5 | [Move all zeros to end of Array](www.youtube.com/watch?v=HymuKVb-oME) | www.youtube.com/watch?v=HymuKVb-oME |

                  • [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)

                    • | |