【Python】【难度:简单】Leetcode 面试题05. 替换空格

请实现一个函数,把字符串 s 中的每个空格替换成"%20"。

 

示例 1:

输入:s = "We are happy."
输出:"We%20are%20happy."
 

限制:

0 <= s 的长度 <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

class Solution(object):
    def replaceSpace(self, s):
        """
        :type s: str
        :rtype: str
        """
        res=""
        for i in s:
            if i==' ':
                res+='%20'
            else:
                res+=i
        return res

 

执行结果:

通过

显示详情

执行用时 :24 ms, 在所有 Python 提交中击败了37.31%的用户

内存消耗 :12.7 MB, 在所有 Python 提交中击败了100.00%的用户

你可能感兴趣的:(leetcode)