[Link]
com/in/anshulagarwal30
30 Java String Coding Problems with Solutions
30 Java String Coding Problems with Solutions
1. Reverse a String
2. Check if a String is Palindrome
3. Count Occurrences of a Character
4. Find Duplicate Characters in a String
5. Remove Duplicates from a String
6. Check if Two Strings are Anagrams
7. Find First Non-Repeated Character
8. Check if a String Contains Only Digits
9. Count Vowels and Consonants
10. Check if a String is a Rotation of Another String
11. Find the longest word in a sentence
12. Convert a string to Title Case
13. Find all permutations of a string
14. Convert string to integer without [Link]()
15. Find the frequency of words in a sentence
16. Convert String to char[] without .toCharArray()
17. Remove all non-alphabetic characters from a string
18. Convert lowercase to uppercase without toUpperCase()
19. Reverse words in a sentence
20. Check if two strings are one edit distance apart
21. Implement strStr() function (Find substring index)
22. Compress a string (aaabb -> a3b2)
23. Find longest common prefix in an array of strings
24. Implement isSubstring() without contains()
25. Print all substrings of a string
26. Convert a number to words (123 -> "One Hundred Twenty-Three")
27. Validate an email address format
28. Convert CamelCase to snake_case
29. Find the lexicographically smallest string
30. Remove consecutive duplicate words from a sentence
[Link]
1. Reverse a String
2. Check if a String is Palindrome
[Link]
3. Count Occurrences of a Character
4. Find Duplicate Characters in a String
[Link]
5. Remove Duplicates from a String
6. Check if Two Strings are Anagrams
[Link]
7. Find First Non-Repeated Character
8. Check if a String Contains Only Digits
[Link]
9. Count Vowels and Consonants
10. Check if a String is a Rotation of Another String
[Link]
11. Find the longest word in a sentence
12. Convert a string to Title Case
[Link]
13. Find all permutations of a string
[Link]()
14. Convert string to integer without
[Link]
15. Find the frequency of words in a sentence
Stringto
16. Convert char[]without
.toCharArray()
[Link]
17. Remove all non-alphabetic characters from a string
toUpperCase()
18. Convert lowercase to uppercase without
[Link]
19. Reverse words in a sentence
[Link]
20. Check if two strings are one edit distance apart
strStr()function (Find substring index)
21. Implement
[Link]
22. Compress a string (aaabb -> a3b2)
[Link]
23. Find longest common prefix in an array of strings
isSubstring()without
24. Implement contains()
[Link]
25. Print all substrings of a string
[Link]
26. Convert a number to words (123 -> "One Hundred Twenty-Three")
[Link]
27. Validate an email address format
28. Convert CamelCase to snake_case
[Link]
29. Find the lexicographically smallest string
[Link]
30. Remove consecutive duplicate words from a sentence
Happy learning!🌸