codewars —6 kyu —Are they the “same“?

Given two arrays a and b write a function comp(a, b) (orcompSame(a, b)) 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 a squared, regardless of the order.

Examples

Valid arrays

a = [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 arrays

If, for example, 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.

Remarks

a or b might be [] (all languages except R, Shell).
a or b might be nil or null or None or nothing (except in C++, Elixir, Haskell, PureScript, Pascal, R, Rust, Shell).
If a or b are nil (or null or None), the problem doesn’t make sense so return false.

Note for C

The two arrays have the same size (> 0) given as parameter in function comp.
#include <stdbool.h>
#include <stdlib.h>

bool comp(const int *a, const int *b, size_t n)
{
  int i,j,t,x[n],y[n];
  for(int i=0;i<n;i++)
  {
    x[i]=a[i];
    y[i]=b[i];
  }
for(i=0;i<n;i++)
  {
    for(j=i;j<n;j++)
      {
      
        if(x[i]>x[j])
          {
            t=x[i];
            x[i]=x[j];
            x[j]=t;
          }
        if(y[i]>y[j])
          {
            t=y[i];
            y[i]=y[j];
            y[j]=t;
          }
      
      }
  }

    bool f=true;
  for(int i=0;i<n;i++)
    {
    if(x[i]*x[i]!=y[i])
      f=false;
  }

return f;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值