You are playing the Bulls and Cows game with your friend.
You write down a secret number and ask your friend to guess what the number is. When your friend makes a guess, you provide a hint with the following info:
The number of “bulls”, which are digits in the guess that are in the correct position.
The number of “cows”, which are digits in the guess that are in your secret number but are located in the wrong position. Specifically, the non-bull digits in the guess that could be rearranged such that they become bulls.
Given the secret number secret and your friend’s guess guess, return the hint for your friend’s guess.
The hint should be formatted as "xAyB", where x is the number of bulls and y is the number of cows. Note that both secret and guess may contain duplicate digits.
Input: secret ="1807", guess ="7810"Output: "1A3B"Explanation: Bulls are connected with a '|' and cows are underlined:"1 8 0 7"|"7 8 1 0"⎻⎻⎻
Example 2:
1
2
3
4
5
6
7
8
Input: secret ="1123", guess ="0111"Output: "1A1B"Explanation: Bulls are connected with a '|' and cows are underlined:"1 1 2 3""1 1 2 3"| or |"0 1 1 1""0 1 1 1"⎻⎻Note that only one of the two unmatched 1s is counted as a cow since the non-bull digits can only be rearranged to allow one 1 to be a bull.
We need to count how many digits are bulls (correct digit and position) and cows (correct digit, wrong position). By using a hash map to track the frequency of unmatched digits in the secret, we can efficiently count cows when the same digit appears in the guess but not as a bull.
Since the digits are from 0 to 9, we can use two arrays to count the frequency of unmatched digits in secret and guess. This allows us to efficiently count cows by comparing the minimum frequency of each digit in both arrays after counting bulls.