my problem is to find the repeating sequence of characters in the given array. simply, to identify the pattern in which the characters are appearing.
example:
for the examples in the ...
I have a recursion project to find all the sequences(or subsets) of a Char array as such that each character appears in the same order. For Example, for the array ...
I'm working on a problem to help try and improve my java skills before I sit SCJA: I have an array, "word", with three characters "D" "O" and "G". I'm trying to search through a larger 2D array and then print out all three characters when they are matched in a row. I have worked this out on a white board ...