How to check if a string is a rotation of another string in TypeScript

1 Answer

0 votes
function isRotation(s1: string, s2: string): boolean {
    return (s1.length === s2.length) && (s1 + s1).indexOf(s2) !== -1; 
} 
 
let s1: string = "abbc"; 
let s2: string = "cabb"; 
   
console.log(isRotation(s1, s2) ? "yes" : "no");
   
s1 = "abbc"; 
s2 = "bbac"; 
     
console.log(isRotation(s1, s2) ? "yes" : "no");
    
  
  
/*
run:
        
"yes" 
"no"  
      
*/

 



answered Feb 3, 2025 by avibootz

Related questions

1 answer 101 views
1 answer 148 views
1 answer 121 views
1 answer 152 views
1 answer 134 views
1 answer 128 views
...