268. 缺失数字
Posted phun19
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了268. 缺失数字相关的知识,希望对你有一定的参考价值。
给定一个包含 0, 1, 2, ..., n 中 n 个数的序列,找出 0 .. n 中没有出现在序列中的那个数。
示例 1:
输入: [3,0,1]
输出: 2
示例 2:
输入: [9,6,4,2,3,5,7,0,1]
输出: 8
class Solution { public int missingNumber(int[] nums) { int[] res = new int[nums.length + 1]; for(int i = 0; i < nums.length; i++) { res[nums[i]] = 1; } for(int i = 0; i < res.length; i++) { if(res[i] == 0) return i; } return 0; } }
说明:
你的算法应具有线性时间复杂度。你能否仅使用额外常数空间来实现?
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/missing-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
以上是关于268. 缺失数字的主要内容,如果未能解决你的问题,请参考以下文章