题解 | #牛群名字编码#

牛群名字编码

https://www.nowcoder.com/practice/9e86301a87954987932f3c7869b5a610

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @param names string字符串一维数组
# @return int整型
#
class Solution:
    def minimum_encoding_length(self, names: List[str]) -> int:
        # write code here
        indices = [name + "#" for name in names]
        indices.sort(key=lambda x: len(x))
        indices = indices + ["#"]
        count = 0
        for i in range(len(indices) - 1):
            for j in range(i + 1, len(indices)):
                if indices[j].endswith(indices[i]):
                    break
            if j == len(indices) - 1:
                count += len(indices[i])
        return count

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务