zoukankan      html  css  js  c++  java
  • 645. Set Mismatch

    The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another number in the set, which results in repetition of one number and loss of another number.

    Given an array nums representing the data status of this set after the error. Your task is to firstly find the number occurs twice and then find the number that is missing. Return them in the form of an array.

    Example 1:

    Input: nums = [1,2,2,4]
    Output: [2,3]
    

    Note:

    1. The given array size will in the range [2, 10000].
    2. The given array's numbers won't have any order.
    class Solution {
        public int[] findErrorNums(int[] nums) {
            int n = nums.length;
            int[] num = new int[n+1];
            for(int i = 0; i < n; i++) num[nums[i]]++;
            int[] res = new int[2];
            for(int i = 1; i <= n; i++) {
                if(num[i] == 2) res[0] = i;
                if(num[i] == 0) res[1] = i;
            }
            return res;
        }
    }

    把频率记下来,频率是2的和频率是0的就是答案

  • 相关阅读:
    欧拉函数
    新博客地址
    socket编程
    文件操作
    python安装扩展”unable to find vcvarsall.bat“的解决办法
    PYTHON以及插件安装
    梯式结构
    PHPSTORM配置
    CSRF攻击
    js的一些奇葩用法
  • 原文地址:https://www.cnblogs.com/wentiliangkaihua/p/13649478.html
Copyright © 2011-2022 走看看