题目
力扣-剑指 Offer 05. 替换空格
请实现一个函数,把字符串 s 中的每个空格替换成" "。
代码语言:javascript复制示例 1:
输入:s = "We are happy."
输出:"We are happy."
限制:
0 <= s 的长度 <= 10000
题解
该题难度为简单。
解法一:使用strings.Replace
代码语言:javascript复制//Go
func replaceSpace(s string) string {
return strings.Replace(s, " ", " ", -1)
}
解法二:遍历添加
代码语言:javascript复制//Go
func replaceSpace(s string) string {
ans := ""
for _,v := range s{
if v == ' '{
ans = ans " "
} else {
ans = ans string(v)
}
}
return ans
}
leetcode-执行:
代码语言:javascript复制执行用时:
0 ms, 在所有 Go 提交中击败了100.00%的用户
内存消耗:
3.4 MB, 在所有 Go 提交中击败了16.95%的用户
牛客网执行:
代码语言:javascript复制运行时间:2ms
超过100.00%用Go提交的代码
占用内存:956KB
超过23.81%用Go提交的代码