AI Features

Puzzle 3 Explanation: ASCII Encoding

Understand how the counting process today is different from history.

We'll cover the following...

Try it yourself

Try executing the code below to see the result for yourself.

Go (1.16.5)
package main
import (
"fmt"
)
func main() {
city := "Kraków"
fmt.Println(len(city))
}
...