You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in isBlackJack() method, the code only checks for Aces and face cards. 10 and Ace should also be valid blackjack. I think the return statement should be: return (first.isAce() && second.value()==10)||(first.value()==10&& second.isAce());
The text was updated successfully, but these errors were encountered:
in isBlackJack() method, the code only checks for Aces and face cards. 10 and Ace should also be valid blackjack. I think the return statement should be: return (first.isAce() && second.value()==10)||(first.value()==10&& second.isAce());
The text was updated successfully, but these errors were encountered: