You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ The solutions are easy to understand and complete.
7
7
*[Searching](#searching)
8
8
*[Sorting](#sorting)
9
9
*[Arrays](#arrays)
10
+
*[Hashing](#hashing)
10
11
*[Stacks](#stacks)
11
12
*[Bit Algorithms](#bitAlgo)
12
13
*[Mathematics](#maths)
@@ -98,6 +99,13 @@ The solutions are easy to understand and complete.
98
99
35.[Find the median of two sorted array of equal size](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/MedianOf2SortedArrays.rb)
99
100
36.[Given a 2D array,print its all elements in spiral order](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/PrintMatrixInSpiralOrder.rb)
100
101
102
+
<aname="hashing"/>
103
+
### Hashing ###
104
+
105
+
1.[Find pair in array with sum equal to given value(Approach 1)](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/ChekPairWithGivenSum.rb)
106
+
2.[Find pair in array with difference equal to given value(Approach 2)](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/ChekPairWithGivenDiff.rb)
107
+
3.[Sort a given array by frequency of elements](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/SortArrayByFrequency.rb)
108
+
101
109
<aname="stacks"/>
102
110
### Stacks ###
103
111
@@ -107,6 +115,8 @@ The solutions are easy to understand and complete.
107
115
### Bit Algorithms ###
108
116
109
117
1.[Check if a given number is power of 2 or not](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/bitAlgorithms/CheckForPowerOfTwo.rb)
118
+
2.[Check if a given number is even or odd](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/bitAlgorithms/CheckIfEvenOrOdd.rb)
119
+
3.[Find missing number in array(Approach 2)](https://github.com/kumar91gopi/Algorithms-and-Data-Structures-in-Ruby/blob/master/arrays/FindMissingNumber.rb)
0 commit comments