[leetcode] 1346. Check If N and Its Double Exist

Description

Given an array arr of integers, check if there exists two integers N and M such that N is the double of M ( i.e. N = 2 * M).

More formally check if there exists two indices i and j such that :

  • i != j
  • 0 <= i, j < arr.length
  • arr[i] == 2 * arr[j]

Example 1:

Input: arr = [10,2,5,3]
Output: true
Explanation: N = 10 is the double of M = 5,that is, 10 = 2 * 5.

Example 2:

Input: arr = [7,1,14,11]
Output: true
Explanation: N = 14 is the double of M = 7,that is, 14 = 2 * 7.

Example 3:

Input: arr = [3,1,7,11]
Output: false
Explanation: In this case does not exist N and M, such that N = 2 * M.

Constraints:

  • 2 <= arr.length <= 500
  • -10^3 <= arr[i] <= 10^3

分析

题目的意思是:给你一个数组,问是否存在一个数是另一个数的2倍,我的想法是先根据绝对值排序,因为有负数,然后再遍历判断当前的数是否在以下一个数为开始的数组里面,如果能够找到说明存在,这个解法的时间复杂度为O(nlogn),全都花在排序上面了,我看了一下别人O(n)的解法,是考虑了正数和负数两种情况,把遍历过的数加入到集合里面,如果一个数的1/2正好在这个集合里面,说明存在啦,构思还挺巧妙的。

代码

class Solution:
    def checkIfExist(self, arr: List[int]) -> bool:
        arr=sorted(arr,key=lambda x:abs(x))
        n=len(arr)
        j=n-1
        i=0
        for i in range(n):
            if(arr[i]*2 in arr[i+1:]):
                return True
        
        return False

参考文献

[LeetCode] Python O(N) solution

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值