logo CodeStepByStep logo

ReverseChunks

Language/Type: C# string return
Related Links:

Write a method named ReverseChunks that accepts a string s and integer k as parameters and returns a new string that reverses the relative order of every k characters of s. For example, the call of ReverseChunks("MehranSahami", 3) should view the string in groups of 3 characters at a time, reversing "Meh" into "heM", and "ran" into "nar", and so on, returning a result of "heMnarhaSima".

If the string's length is not an exact multiple of k, the last chunk of fewer-than-k characters at the end of the string should be left in its original order. For example, if the call is ReverseChunks("MartyStepp", 4), the first chunk "Mart" becomes "traM" and the second chunk "ySte" becomes "etSy". The last two characters, "pp", are fewer than 4, so they are left as-is. So the result returned should be "traMetSypp".

You may assume that the value passed for k will be a positive integer.

Constraints: You should not create any data structures such as arrays. But you may create as many strings as you like, and you may use as many simple variables (such as ints) as you like.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.