type
status
date
slug
summary
tags
category
icon
password
🗨️
A project that evaluate all possible hands from two players and compute the winner.

🖼️ Project Link


Project Description

Goal: a program that given the hands of 2 players and the community cards, evaluates the winner.
Input: You will be provided with a plain text file that contains random hands dealt to two players. Each line of the file contains 13 cards (each card separated by a single space): the first four cards are Player 1’s cards, next four are Player 2’s cards and the last five are community cards. Each players best hand constitutes the best 5 cards from the player’s hand and the community cards combined such that exactly 2 of player’s cards are used. You can assume that all hands are valid (no invalid characters or repeated cards in the input).
Output: You are to generate Output.txt where each line contains the winner of the corresponding hand in the input. If the hand is a tie (see examples below) the output must indicate “No single winner”.
 
Some Rules about Poker:
In poker, hands are ranked, from lowest to highest, in the following way:
  • High Card: Highest value card.
  • One Pair: Two cards of the same value.
  • Two Pairs: Two different pairs.
  • Three of a Kind: Three cards of the same value.
  • Straight: All cards are consecutive values.
  • Flush: All cards of the same suit.
  • Full House: Three of a kind and a pair.
  • Four of a Kind: Four cards of the same value.
  • Straight Flush: All cards are consecutive values of same suit.
  • Royal Flush: Ten, Jack, Queen, King, Ace, in same suit.
The cards are valued in the order:
2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, King, Ace.


 
 
 
 
Youtube Music ProjectFitness Tracker Project