mxllcf

导航

2021年11月3日 #

字符串

摘要: 空格替换:请实现一个函数,把字符串 s 中的每个空格替换成"%20"。 class Solution { public String replaceSpace(String s) { int length = s.length(); char [] array = new char[length * 阅读全文

posted @ 2021-11-03 10:51 mxllcf 阅读(34) 评论(0) 推荐(0) 编辑