(str string, ary []string)
| 222 | } |
| 223 | |
| 224 | func existsIn(str string, ary []string) bool { |
| 225 | for _, val := range ary { |
| 226 | if val == str { |
| 227 | return true |
| 228 | } |
| 229 | } |
| 230 | return false |
| 231 | } |
| 232 | |
| 233 | func sortedUniqueArray(ary1 []string, ary2 []string) []string { |
| 234 | uniq := append([]string{}, ary1...) |
no outgoing calls
no test coverage detected