(strs []string, test string)
| 188 | } |
| 189 | |
| 190 | func ContainsStr(strs []string, test string) bool { |
| 191 | for _, s := range strs { |
| 192 | if s == test { |
| 193 | return true |
| 194 | } |
| 195 | } |
| 196 | return false |
| 197 | } |
| 198 | |
| 199 | func IsPrefix(strs []string, test string) bool { |
| 200 | for _, s := range strs { |
no outgoing calls
no test coverage detected