1 Star 0 Fork 0

Burning/gops

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sliceUtis.go 758 Bytes
一键复制 编辑 原始数据 按行查看 历史
Burning 提交于 2024-11-16 11:22 . 优化更新
package gslice
import (
"sort"
"strings"
)
// ContainsString 判断字符串是否在数组中
func ContainsString(arr []string, str string) bool {
for _, s := range arr {
if s == str {
return true
}
}
return false
}
// RemoveString 移除数组中的某个字符串
func RemoveString(arr []string, str string) ([]string, bool) {
for i, s := range arr {
if s == str {
arr = append(arr[:i], arr[i+1:]...)
return arr, true
}
}
return arr, false
}
// RemoveDuplicate 去重
func RemoveDuplicate(list []string) []string {
sort.Strings(list)
i := 0
var newlist = []string{""}
for j := 0; j < len(list); j++ {
if strings.Compare(newlist[i], list[j]) == -1 {
newlist = append(newlist, list[j])
i++
}
}
return newlist
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jie_python/gops.git
git@gitee.com:jie_python/gops.git
jie_python
gops
gops
v1.0.112

搜索帮助