欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LCP 1.猜数字

程序员文章站 2024-03-18 18:16:16
...

LCP 1.猜数字

LCP 1.猜数字

题解:

for循环嵌套if遍历,两个数组之间找不同。

class Solution {
    public int game(int[] guess, int[] answer) {
        int count = 0;
        for(int i=0;i<3;i++){
                if(guess[i]==answer[i]){
                    count++;
                }
        }
        return count;
    }
}
相关标签: LCP1.猜数字