Problem Description
You are given an integer array ranks and a character array suits. You have 5 cards where the ith card has a rank of ranks[i] and a suit of suits[i]. Return a string representing the best type of poker hand you can make with the given cards.
Key Insights
- A "Flush" consists of five cards of the same suit.
- "Three of a Kind" consists of three cards of the same rank.
- A "Pair" consists of two cards of the same rank.
- If none of the above hands are present, the hand is classified as a "High Card".
Space and Time Complexity
Time Complexity: O(1) - The algorithm processes a fixed number of cards (5), so the computation time is constant. Space Complexity: O(1) - The space used is constant regardless of input size, as we only use a few variables to store counts.
Solution
To solve the problem, we can utilize a dictionary (or hash table) to count the occurrences of each rank and a set to track the unique suits. The algorithm proceeds as follows:
- Initialize a dictionary to count the number of cards for each rank.
- Initialize a set to track unique suits.
- Iterate over the ranks and suits to populate the dictionary and the set.
- Check if the size of the set is 1 (indicating a "Flush").
- Check the counts in the dictionary to determine if there is a "Three of a Kind" or "Pair".
- Return the best hand type based on the checks.