Bug in isBlackJack() method in BlackJackHand.java

Author: LeonCai1Created Dec 13, 2022Updated Dec 13, 2022

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());

Source: careercup/CtCI-6th-Edition