Skip to content

Commit e85890d

Browse files
committed
DOCS : links to anagram and other problems
1 parent 6f34d68 commit e85890d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ This repository will house several code snippets and useful resources for Data S
2121

2222
* [Power of 2 - A two player game](/java/MiscellaneousProblems/powerGame.java)
2323
* [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)
2425

2526
>#### Arrays
2627
* [Spiral traversal of a m x n Matrix](/java/arrays/Spiralmatrix.java)
2728
* [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)
2933

3034
>#### Linked Lists
3135
* [General Implementation](/java/LinkedLists/Implentation.java)
@@ -69,6 +73,7 @@ This repository will house several code snippets and useful resources for Data S
6973
* [String Segmentation](/java/strings/StringSegmentation.java)
7074
* [Next Highest Permutation Of A String](/java/strings/NextHighestPermutation.java)
7175
* [Anagram](/java/strings/Anagram.java)
76+
* [Count the occurences of anagrams, given a word and a pattern](/java/strings/countAnagrams.java)
7277

7378
## Python
7479

@@ -86,6 +91,7 @@ This repository will house several code snippets and useful resources for Data S
8691
* [Getting started with Queues](/python/queues/ImplementationUsingLists.py)
8792
* [Implementing queues with Linkedlists](/python/queues/LinkedListImplementation.py)
8893
* [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)
8995

9096
## JavaScript(ECMAScript 2015)
9197

0 commit comments

Comments
 (0)