Dav corrections

This commit is contained in:
miguel 2022-07-13 17:49:06 +01:00
parent 2e9a1d7998
commit 12d57a2f64
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a function that returns the nth `rune` of a `string`. If it's not possible it doesn't return anything.
Write a function that returns the nth `rune` of a `string`. If not possible, it returns `0`.
### Expected function

View File

@ -30,7 +30,7 @@ And its output :
```console
$ go run . | cat -e
Hello World!$
Hello World!
$
```