π One-stop destination for all your technical interview Preparation π
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.
class Solution {
public:
string getHint(string secret, string guess)
{
int bulls = 0, cows = 0;
int n = secret.size();
vector<int> cnt(10, 0);
for (int i = 0; i < n; i++) {
if (secret[i] == guess[i]) {
bulls++;
} else {
if (cnt[secret[i] - '0']++ < 0) {
cows++;
}
if (cnt[guess[i] - '0']-- > 0) {
cows++;
}
}
}
return to_string(bulls) + "A" + to_string(cows) + "B";
}
};