题解 | #牛群名字编码#

牛群名字编码

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

全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
小谷围鸡肉卷阿姨:+1,腾子投完一动不动
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务