@emerson
The first answer was `if <element> in <slice>`, which is valid Python but not valid Go. The second was `if strings.Contains(<slice>, <element>)`. There is a `strings` package that has a `Contains` method, but it's to check if a substring is in the input string.