【codewars】Are they the "same"

原贴地址
https://www.codewars.com/kata/550498447451fbbd7600041c/train/java

简介如下:
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 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 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 (except in Haskell, Elixir, C++, Rust, R, Shell).

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 the result is evident by itself.

Note for C

The two arrays have the same size (> 0) given as parameter in function comp.

方法类

public class AreSame {
    
    public static boolean comp(int[] a, int[] b) {
    return null;
  }
}

测试类

import static org.junit.Assert.*;
import org.junit.Test;


public class AreSameTest {

    @Test
    public void test1() {
        int[] a = new int[]{121, 144, 19, 161, 19, 144, 19, 11};
        int[] b = new int[]{121, 14641, 20736, 361, 25921, 361, 20736, 361};
        assertEquals(AreSame.comp(a, b), true); 
    }
}

我的答案

import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
public class AreSame {
    
    public static boolean comp(int[] a, int[] b) {
        System.out.println(Arrays.toString(a));
        System.out.println(Arrays.toString(b));
        
        if (a == null || b == null || a.length != b.length ) {
            return false;
        }
        
        
        List<Integer> blist = new ArrayList<>();
        for (int i = 0; i < b.length; i++) {
            blist.add(b[i]);
        }
        
        boolean flag = true;
        for(int i = 0; i < a.length; i++){
            int tempa = a[i];
            int square = tempa * tempa;
            if (!blist.contains(square)) {
                flag = false;
                break;
            }else {
                blist.remove(Integer.valueOf(square));
            }
        }
        
        return flag;
  }
}

solution 地址
https://www.codewars.com/kata/550498447451fbbd7600041c/solutions/java

best prictice

import java.util.Arrays;

public class AreSame {
  public static boolean comp(final int[] a, final int[] b) {
    return a != null && b != null && a.length == b.length && Arrays.equals(Arrays.stream(a).map(i -> i * i).sorted().toArray(), Arrays.stream(b).sorted().toArray());
  }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,968评论 0 23
  • 我相信这世界上有很多内心不够强大的孩子们 你需要人认可,你不希望被人否定 你们有时候也会傻傻的在意不该在意的人 然...
    M小生阅读 219评论 0 0
  • 我踏着清晨最温婉的朝晖而来,哼着世间最清脆的乐,我会被世间一切宠爱,于是 我以为鱼是爱我的,原来我只是她习惯到感觉...
    难为水_阅读 267评论 0 2
  • 早先,正好写过一篇,总结下来其实就一句。 许多人的所谓成熟,不过是被习俗磨去了棱角,变得世故而实际了。那不是成熟,...
    章小白同学阅读 275评论 0 2
  • 白色的乌鸦 披着丧服的乌鸦, 坠入漆黑的渊。 当苦难肆虐人心, 我保留最后一点沉默, 荆棘缠绕年轻的骨骼, 绽放一...
    末世婉儿阅读 252评论 6 0