News

This repository contains solutions to various string manipulation problems in Java. The problems are based on common string operations and algorithms, such as reversing a string, finding palindromes, ...
* In a string composed of 'L', 'R', and 'X' characters, like "RXXLRXRXL", a move consists of either replacing one occurrence of "XL" with "LX", or replacing one occurrence of "RX" with "XR". Given the ...
Most Java programmers have used the java.util.StringTokenizer class at some time or another. It is a handy class that basically tokenizes (breaks) the input string based on a separator, and supplies ...