Skip to content

Commit 4205109

Browse files
authored
Update README.md
1 parent 773e3c2 commit 4205109

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@
7272
17. Find the pair of elements(X+Y) in the array whose sum is equal to given number Z. [[Solution]](InterviewPrograms/src/com/java/array/FindPairForZ.java)
7373

7474
# String Based Programs
75-
1. Write a java program to check Given String is Palindrome or NOT. [[Solution]](InterviewPrograms/src/com/java/strings/Palindrome.java)
76-
2. How to Swap two Strings without using third (temporary) variable? [[Solution]](InterviewPrograms/src/com/java/strings/SwapTwoStrings.java)
77-
3. Write a java program to reverse a String without using in-build function. [[Solution]](InterviewPrograms/src/com/java/strings/ReverseString.java)
78-
4. Write a java program to count the number of words in a given String. [[Solution]](InterviewPrograms/src/com/java/strings/CountWords.java)
79-
5. Write a java program to ***count the number of vowels*** in the given string. [[Solution]](InterviewPrograms/src/com/java/strings/CountVowels.java)
80-
6. Check Given String is Rotation of Another String. [[Solution]](InterviewPrograms/src/com/java/strings/StringRotationOfAnother.java)
81-
7. Write a Java Program to check two strings are Anagram to each other or NOT. [[Solution]](InterviewPrograms/src/com/java/strings/Anagram.java)
75+
1. Write a java program to check Given String is ***Palindrome or NOT***. [[Solution]](InterviewPrograms/src/com/java/strings/Palindrome.java)
76+
2. How to ***Swap two Strings*** without using third (temporary) variable? [[Solution]](InterviewPrograms/src/com/java/strings/SwapTwoStrings.java)
77+
3. Write a java program to ***Reverse a String*** without using in-build function. [[Solution]](InterviewPrograms/src/com/java/strings/ReverseString.java)
78+
4. Write a java program to ***Count the Number of Words*** in a given String. [[Solution]](InterviewPrograms/src/com/java/strings/CountWords.java)
79+
5. Write a java program to ***Count the Number of Vowels*** in the given string. [[Solution]](InterviewPrograms/src/com/java/strings/CountVowels.java)
80+
6. Check Given String is ***Rotation of Another String***. [[Solution]](InterviewPrograms/src/com/java/strings/StringRotationOfAnother.java)
81+
7. Write a Java Program to check two strings are ***Anagram*** to each other or NOT. [[Solution]](InterviewPrograms/src/com/java/strings/Anagram.java)
8282
8. Write a Java program to find the ***Most Repeated Character*** in the Given String. [[Solution]](InterviewPrograms/src/com/java/strings/MostRepeatedChar.java)
83-
9. How do you count the number of words in a Given String using Split method? [[Solution]](InterviewPrograms/src/com/java/strings/CountWords2.java)
84-
10. Write a Java Program to generate all combinatinos of a Given String. [[Solution]](InterviewPrograms/src/com/java/strings/CombinationOfString.java)
85-
11. Write a Java Program to print all permutatinos of a Given String. [[Solution]](InterviewPrograms/src/com/java/strings/PermutationOfString.java)
83+
9. How do you count the ***Number of Words*** in a given String using ***Split method***? [[Solution]](InterviewPrograms/src/com/java/strings/CountWords2.java)
84+
10. Write a Java Program to ***Print All Combinations*** of a given String. [[Solution]](InterviewPrograms/src/com/java/strings/CombinationOfString.java)
85+
11. Write a Java Program to ***Print All Permutations*** of a given String. [[Solution]](InterviewPrograms/src/com/java/strings/PermutationOfString.java)
8686
12. Write a Java Program to find ***All Subsets*** of a Given String using ***Bitwise*** approach. [[Solution]](InterviewPrograms/src/com/java/strings/AllSubsetsUsingBitwise.java)
8787
13. Write a Java Program to find ***All Subsets*** of a Given String using ***Recursion*** approach. [[Solution]](InterviewPrograms/src/com/java/strings/AllSubsetsUsingRecursion.java)
8888

0 commit comments

Comments
 (0)