Initial support for playlists. Missing permissions

This commit is contained in:
Deluan 2020-01-21 16:35:57 -05:00
parent 3a44f37622
commit 57fcdac428
6 changed files with 117 additions and 36 deletions

View file

@ -13,3 +13,12 @@ func MaxInt(x, y int) int {
}
return y
}
func IntInSlice(a int, list []int) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}

View file

@ -32,3 +32,12 @@ func LongestCommonPrefix(list []string) string {
}
return list[0]
}
func StringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}