codewars——Are they the "same"?

Given two arrays a and b write a function comp(a, b) (compSame(a, b) in Clojure) that checks whether the two arrays have the “same” elements, with the same multiplicities. “Same” means, here, that the elements in b are the elements in asquared, regardless of the order.ExamplesValid arraysa = [121, 144, 19, 161, 19, 144, 19, 11]

b = [121, 14641, 20736, 361, 25921, 361, 20736, 361]comp(a, b) returns true because in b 121 is the square of 11, 14641 is the square of 121, 20736 the square of 144, 361 the square of 19, 25921 the square of 161, and so on. It gets obvious if we write b’s elements in terms of squares:a = [121, 144, 19, 161, 19, 144, 19, 11]
b = [1111, 121121, 144144, 1919, 161161, 1919, 144144, 1919]Invalid arraysIf we change the first number to something else, comp may not return true anymore:a = [121, 144, 19, 161, 19, 144, 19, 11]
b = [132, 14641, 20736, 361, 25921, 361, 20736, 361]comp(a,b) returns false because in b 132 is not the square of any number of a.a = [121, 144, 19, 161, 19, 144, 19, 11]
b = [121, 14641, 20736, 36100, 25921, 361, 20736, 361]comp(a,b) returns false because in b 36100 is not the square of any number of a.Remarksa or b might be [] (all languages except R, Shell). a or b might be nil or nullor None or nothing (except in Haskell, Elixir, C++, Rust, R, Shell, PureScript).If a or b are nil (or null or None), the problem doesn’t make sense so return false.If a or b are empty then the result is self-evident.a or b are empty or not empty lists.

思路

惭愧,我的思路很糟糕,各种for循环遍历,做完之后看了大神的操作,惊为天人

总结

尝试去运用一些py的语法糖,对于try的捕获异常也要更加深刻的理解,我自己本来的代码,甚至还加入了判定列表是否为空,是否为空列表,增加程序的运算量。

def comp(array1, array2): 
    try: 
        return sorted([i ** 2 for i in array1]) == sorted(array2)     
    except: 
        return False
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值