热门标签
更多>
搜索结果
查询Tags标签: leadingZero,共有 2条记录-
Leetcode Java_子序列
子序列 402. 移掉 K 位数字402. 移掉 K 位数字 Leetcode class Solution {public String removeKdigits(String num, int k) {// 使用栈删除 x (<=k) 个元素Deque<Character> deque = new LinkedList<Character>();int n = num.length(); for (int i …
2021/12/23 20:08:56 人评论 次浏览 -
Leetcode Java_子序列
子序列 402. 移掉 K 位数字402. 移掉 K 位数字 Leetcode class Solution {public String removeKdigits(String num, int k) {// 使用栈删除 x (<=k) 个元素Deque<Character> deque = new LinkedList<Character>();int n = num.length(); for (int i …
2021/12/23 20:08:56 人评论 次浏览