299. Bulls and Cows

1. Description

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.

2. Example

Example 1:
Input: secret = “1807”, guess = “7810”
Output: “1A3B”

Example 2:
Input: secret = “1123”, guess = “0111”
Output: “1A1B”

3. Constraints

  • 1 <= secret.length, guess.length <= 1000
  • secret.length == guess.length
  • secret and guess consist of digits only.

4. Solutions

Hash Table

n = secret.size()
Time complexity: O(n)
Space complexity: O(1)

class Solution {
public:
    string getHint(const string &secret, const string &guess) {
        int bull = 0, cow = 0;
        unordered_map<int, int> letters;
        for (int i = 0; i <  secret.size(); ++i) {
            if (secret[i] == guess[i]) {
                ++bull;
            } else {
                cow += (letters[secret[i]]++ < 0) + (letters[guess[i]]-- > 0);
            }
        }

        return to_string(bull) + string("A") + to_string(cow) + string("B");
    }
};
comments powered by Disqus