@@ -21,11 +21,15 @@ This repository will house several code snippets and useful resources for Data S
21
21
22
22
* [ Power of 2 - A two player game] ( /java/MiscellaneousProblems/powerGame.java )
23
23
* [ Find number of palindromes of n-digits] ( /java/MiscellaneousProblems/nDigitPalindrome.java )
24
+ * [ Find maximum among x^(y^2) or y^(x^2) where x and y are given] ( /java/MiscellaneousProblems/maxequation.java )
24
25
25
26
> #### Arrays
26
27
* [ Spiral traversal of a m x n Matrix] ( /java/arrays/Spiralmatrix.java )
27
28
* [ Split an array into two having equal sums] ( /java/arrays/splitArrayWithEqualSums.java )
28
- * [ Find the highest value using 4 operators +,* ,(,)] ( /java/arrays/HighestPossibleSum.java )
29
+ * [ Find the highest value using 4 operators +, * , (, )] ( /java/arrays/HighestPossibleSum.java )
30
+ * [ Print alternate prime numbers till N] ( /java/arrays/AlternatePrimes.java )
31
+ * [ Minimum number of Changes required to transform an array into an arithmetic progression] ( /java/arrays/arithmeticProgression.java )
32
+ * [ Seperate 0s and 1s from an array using a single array only] ( /java/arrays/seperate0and1s.java )
29
33
30
34
> #### Linked Lists
31
35
* [ General Implementation] ( /java/LinkedLists/Implentation.java )
@@ -69,6 +73,7 @@ This repository will house several code snippets and useful resources for Data S
69
73
* [ String Segmentation] ( /java/strings/StringSegmentation.java )
70
74
* [ Next Highest Permutation Of A String] ( /java/strings/NextHighestPermutation.java )
71
75
* [ Anagram] ( /java/strings/Anagram.java )
76
+ * [ Count the occurences of anagrams, given a word and a pattern] ( /java/strings/countAnagrams.java )
72
77
73
78
## Python
74
79
@@ -86,6 +91,7 @@ This repository will house several code snippets and useful resources for Data S
86
91
* [ Getting started with Queues] ( /python/queues/ImplementationUsingLists.py )
87
92
* [ Implementing queues with Linkedlists] ( /python/queues/LinkedListImplementation.py )
88
93
* [ FIFO page replacement algorithm] ( /python/queues/FIFOpageReplacement.py )
94
+ * [ Rearrange the elements by interleaving the first half of the queue with the second half of the queue.] ( /python/queues/InterleavingElements.py )
89
95
90
96
## JavaScript(ECMAScript 2015)
91
97
0 commit comments