Merge pull request #1142 from sarthakz9/patch-1

small correction in given example
This commit is contained in:
Jake Wharton
2020-05-18 09:46:41 -04:00
committed by GitHub

View File

@@ -43,12 +43,12 @@ import javax.annotation.Nullable;
* interface HandOfCards { * interface HandOfCards {
* } * }
* *
* class BlackjackHand extends HandOfCards { * class BlackjackHand implements HandOfCards {
* Card hidden_card; * Card hidden_card;
* List<Card> visible_cards; * List<Card> visible_cards;
* } * }
* *
* class HoldemHand extends HandOfCards { * class HoldemHand implements HandOfCards {
* Set<Card> hidden_cards; * Set<Card> hidden_cards;
* } * }
* *