You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is need to be some simple description of rot13, like: Characters before the middle letter M are rotated backwards on 13 characters, and other are rotated forwards on 13 characters.
Also here must be a hint like: use inner Read() method of io.Reader to handle []byte from function.
Maybe a small template would be better:
n, err := r.r.Read(b)
for i := 0; i < n; i++ {
// rot13 transform
}
return n, err
The text was updated successfully, but these errors were encountered:
Context: https://go-tour-ru-ru.appspot.com/methods/23
There is need to be some simple description of rot13, like: Characters before the middle letter M are rotated backwards on 13 characters, and other are rotated forwards on 13 characters.
Also here must be a hint like: use inner Read() method of io.Reader to handle []byte from function.
Maybe a small template would be better:
The text was updated successfully, but these errors were encountered: