MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / reverseString

Method reverseString

ReverseString.java:2–12  ·  view source on GitHub ↗
(char[] s)

Source from the content-addressed store, hash-verified

1class Solution {
2 public void reverseString(char[] s) {
3 int j=s.length-1;
4 int i=0;
5 while(i<j)
6 {
7 char t=s[i];
8 s[i]=s[j];
9 s[j]=t;
10 i++;j--;
11 }
12 }
13}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected