leetcode/notes/src/substitute_spaces.md

16 lines
426 B
Markdown
Raw Normal View History

2022-11-29 12:26:23 +00:00
# 替换空格
[Leetcode](https://leetcode.cn/problems/ti-huan-kong-ge-lcof/)
请实现一个函数,把字符串 s 中的每个空格替换成"%20"。
示例 1
> 输入s = "We are happy."
>
> 输出:"We%20are%20happy."
![demo](https://tva1.sinaimg.cn/large/e6c9d24ely1go6qmevhgpg20du09m4qp.gif)
对于很多数组填充类问题,都可以先计算出扩展后数组的长度,然后从后往前双指针。