#力扣:LCP 01. 猜数字@FDDLC

LCP 01. 猜数字 - 力扣(LeetCode)

一、Java

class Solution {
    public int game(int[] guess, int[] answer) {
        int cnt=0;
        for(int i=0;i<3;i++){
            if(guess[i]==answer[i])cnt++;
        }
        return cnt;
    }
}

你可能感兴趣的:(力扣刷题:Java,C++,Python,JS,Go,java,算法,数据结构)