mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.1 KiB
2.1 KiB
card_deck
Instructions
A standard deck of cards has 52 cards: 4 suits and 13 cards per suit. Represent the cards from a deck:
- Start by creating the
Suit
enum - implement the associated function
random
which returns a randomSuit
(Heart
,Diamond
,Spade
orClub
) - Then create the
Rank
enum that can have the valueAce
,King
,Queen
,Jack
, andNumber
associated to anu8
value to represent the ranks 2 through 10 - After create an associated function to
Rank
calledRandom
that returns a randomRank
- Finally create a structure name
Card
which has the fieldssuit
andrank
Define:
- The associated function
translate
forRank
andSuit
:- For
Suit
,translate
makes the translation between an integer value (u8) and the suit of a card (1 -> Heart, 2 -> Diamonds, 3 -> Spade, 4 -> Club) - For
Rank
,translate
makes the translation between an integer value (u8) and the rank ( 1 -> Ace, 2 -> 2, .., 10 -> 10, 11 -> Jack, 12 -> Queen, 13 -> King)
- For
- The associated function
random
forRank
andSuit
which returns a randomRank
andSuit
respectively - Finally define the function
winner_card
which returnstrue
if the card passed as an argument is an Ace of spades
Notions
Dependencies
rand = "0.3.14"
Expected Functions and Structures
pub enum Suit {
}
pub enum Rank {
}
impl Suit {
pub fn random() -> Suit {
}
pub fn translate(value: u8) -> Suit {
}
}
impl Rank {
pub fn random() -> Rank {
}
pub fn translate(value: u8) -> Rank {
}
}
pub struct Card {
pub suit: Suit,
pub rank: Rank,
}
Usage
Here is a program to test your function
fn main() {
let your_card = Card {
rank: Rank::random(),
suit: Suit::random(),
};
println!("Your card is {:?}", your_card);
// Now if the card is an Ace of Spades print "You are the winner"
if card_deck::winner_card(your_card) {
println!("You are the winner!");
}
}
And its output
$ cargo run
Your card is Card { suit: Club, rank: Ace }
$