[Golang]力扣Leetcode|[Golang]力扣Leetcode - 448. 找到所有数组中消失的数字(哈希)
题目:给你一个含 n 个整数的数组 nums ,其中 nums[i] 在区间 [1, n] 内。请你找出所有在 [1, n] 范围内但没有出现在 nums 中的数字,并以数组的形式返回结果。
链接: 力扣Leetcode - 448. 找到所有数组中消失的数字.
【[Golang]力扣Leetcode|[Golang]力扣Leetcode - 448. 找到所有数组中消失的数字(哈希)】示例 1:
输入:nums = [4,3,2,7,8,2,3,1]示例 2:
输出:[5,6]
输入:nums = [1,1]思路:使用哈希表,遍历数组把出现过的数存在哈希表中。再遍历哈希表,把没有存在哈希表中的数存进数组即可。
输出:[2]
Go代码:
package mainimport "fmt"func findDisappearedNumbers(nums []int) []int {
HashMap := map[int]int{}
var res []int
for _, i := range nums {
HashMap[i] = 1
}for j := 1;
j <= len(nums);
j++ {
if HashMap[j] != 1 {
res = append(res, j)
}
}
return res
}
func main() {
a := []int{4, 3, 2, 7, 8, 2, 3, 1}
fmt.Println(findDisappearedNumbers(a))
}
提交截图:
文章图片
推荐阅读
- [Golang]力扣Leetcode - 258. 各位相加
- Leetcode541/151之String与char数组与StringBuffer
- Leetcode2两数相加(链表应用)
- [Golang]力扣Leetcode|[Golang]力扣Leetcode - 414. 第三大的数(排序)
- leetcode|【LC】31. 下一个排列
- c语言|leetcode707 设计链表 (C语言实现)
- LeetCode-165-比较版本号
- Golang 远程调试工具Delve 安装使用
- 每日一道算法题|Leetcode 213.打家劫舍 II &剑指Offer II 090. 环形房屋偷盗
- Leetcode刷题之链表增加头结点的前缀节点