首页 > 其他 > 详细

LeetCode 821 Shortest Distance to a Character 解题报告

时间:2019-02-13 10:31:28      阅读:136      评论:0      收藏:0      [点我收藏+]

题目要求

Given a string S and a character C, return an array of integers representing the shortest distance from the character C in the string.

Note:

  1. S string length is in [1, 10000].
  2. is a single character, and guaranteed to be in string S.
  3. All letters in and C are lowercase. 

题目分析及思路

题目给出一个字符串和一个字符,要求得到字符串中每一个字符和该字符的最短距离。可以先得到已知字符的所有索引,再遍历字符串得到每一个字符与该字符的最短距离。

python代码

class Solution:

    def shortestToChar(self, S: ‘str‘, C: ‘str‘) -> ‘List[int]‘:

        index = []

        res = []

        for i, v in enumerate(S):

            if v == C:

                index.append(i)

        for i, v in enumerate(S):

            res.append(min(list(map(lambda x:abs(x-i), index))))

        return res

            

                

            

            

        

 

LeetCode 821 Shortest Distance to a Character 解题报告

原文:https://www.cnblogs.com/yao1996/p/10368211.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!