The repository is created to solve the fundamental interview questions, focussing on data structures and algorithms.
This file maintains the details of each program and the related source/other information.
The repository currently written in C# (VS 2019 - .net version 8.0)
Issue: om-ganesh#2
Problem: https://leetcode.com/problems/two-sum/
Solution: TwoSum.cs
Issue: om-ganesh#4
Problem: https://leetcode.com/problems/add-two-numbers/
Solution: AddSinglyLinkedLists.cs
Issue: om-ganesh#8
Problem: https://leetcode.com/problems/median-of-two-sorted-arrays/
Solution: MedianOfTwoArray.cs
Issue: om-ganesh#6
Problem: https://leetcode.com/problems/longest-substring-without-repeating-characters/
Solution: LongestSubstring.cs
Issue: om-ganesh#6
Problem: https://leetcode.com/problems/minimum-window-substring/
Solution: MinimumWindowSubstring.cs
Issue: om-ganesh#12
Problem: https://leetcode.com/problems/move-zeroes/
Solution: MoveZerosToEnd.cs
Issue: om-ganesh#15
Problem: https://leetcode.com/problems/min-cost-to-connect-all-points/
Solution: MinManhattanDistance.cs
Issue: om-ganesh#19
Problem: https://leetcode.com/problems/longest-consecutive-sequence/
Solution: LongestConsecutiveSequence.cs
Issue: Given an array, rotate the array to the right by k steps, where k is non-negative.
Problem:https://leetcode.com/problems/rotate-array/
Solution: RotateArray.cs
Issue: om-ganesh#23
Problem:https://leetcode.com/problems/rotate-string
Solution: RotateStringToMatchOther.cs
Issue: om-ganesh#26
Problem:https://leetcode.com/problems/valid-palindrome/
Solution: PalindromeString.cs
Issue: om-ganesh#25
Problem: https://leetcode.com/problems/first-unique-character-in-a-string/
Reference: CS Dojo Youtube (https://www.youtube.com/watch?v=GJdiM-muYqc)
Solution: FirstRecurringCharacterInString.cs
Issue: om-ganesh#29
Problem: https://leetcode.com/problems/first-unique-character-in-a-string/
Solution: FirstUniqueCharacter.cs
Problem: https://leetcode.com/problems/check-array-formation-through-concatenation/
Solution: ArrayFormationThroughConcatenation.cs
Problem: https://leetcode.com/problems/single-number/
Solution: SingleNumber.cs
Problem: https://leetcode.com/problems/valid-sudoku
Solution: SodukoValidator.cs
Problem: https://leetcode.com/problems/maximum-subarray/
Solution: MaxInContiguousSubArray.cs