每日leetcode_LCP01猜数字

每日leetcode_LCP01猜数字

记录自己的成长,加油。

题目出处:LCP 01. 猜数字 - 力扣(LeetCode)

题目

每日leetcode_LCP01猜数字_第1张图片

解题

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

你可能感兴趣的:(LeetCode算法学习,leetcode,算法,职场和发展)