Skip to content

Commit d2bb3a9

Browse files
committed
added documentation
1 parent 03b849f commit d2bb3a9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

exercises/153-isRotated/README.es.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ Una rotación en una cadena se define como quitar el primer elemento y concatena
1212
let output = isRotated("Hello World", "orldHello W")
1313
console.log(output) // true
1414
```
15+
> Más informacion acerca de la rotación de cadenas: [click aquí](https://www.techiedelight.com/es/find-lexicographically-minimal-string-rotation/)

exercises/153-isRotated/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ A rotation on a string is defined as removing first element and concatenating it
1212
let output = isRotated("Hello World", "orldHello W")
1313
console.log(output) // true
1414
```
15+
16+
> For better understanding of string rotation check this article: [click me](https://javarevisited.blogspot.com/2017/07/2-ways-to-check-if-one-string-is-rotation-of-another-String.html#axzz7tVz1WCRT)

0 commit comments

Comments
 (0)