package solutions import "strings" func Index(s string, substr string) int { return strings.Index(s, substr) }