small correction in given example

This commit is contained in:
sarthak sehgal
2020-05-18 12:11:24 +05:30
committed by GitHub
parent db803ffa79
commit 976a891568

View File

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