加载中...

摘要: #03. 数组中重复的数字 ##思路 去重,很容易想到用HashSet class Solution { public int findRepeatNumber(int[] nums) { Set<Integer> s = new HashSet<>(); for(int num : nums){ 阅读全文
posted @ 2022-12-20 16:59 Vincy9501 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #05. 替换空格 ##思路 由于每次替换从1个字符变成3个字符,使用字符数组可方便地进行替换。 class Solution { public String replaceSpace(String s) { StringBuffer sb = new StringBuffer(); for(int 阅读全文
posted @ 2022-12-20 16:01 Vincy9501 阅读(12) 评论(0) 推荐(0) 编辑