【LeetCode】 五月打卡-day08

442. 数组中重复的数据

class Solution {
public List findDuplicates(int[] nums) {
List ans = new ArrayList<>();
int n = nums.length;
for (int i = 0; i < n; i++) { int t = nums[i]; if (t < 0 || t - 1 == i) continue; if (nums[t - 1] == t) { ans.add(t); nums[i] *= -1; } else {

【LeetCode】 五月打卡-day08最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/31243.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>