Complete-Preparation

πŸŽ‰ One-stop destination for all your technical interview Preparation πŸŽ‰

View the Project on GitHub

299. Bulls and Cows 🌟🌟

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.

Counting Solution

Code

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";
    }
};