// blackjack(7,17) -> 17
// blackjack(21, 16) -> 21
// blackjack(19,23) -> 19
public int blackjack(int a, int b) {
}
After this I am really unsure of how to go about writing this code.
// blackjack(7,17) -> 17
// blackjack(21, 16) -> 21
// blackjack(19,23) -> 19
public int blackjack(int a, int b) {
}
After this I am really unsure of how to go about writing this code.
Maybe something like this ?
private int blackjack(int a, int b)
{
int aa = 21-a >= 0 ? 21-a : 22;
int bb = 21-b >= 0 ? 21-b : 22;
if ( aa > 21 && bb > 21 )
{
return -1;
}
return aa < bb ? a : b;
}
Hi use this code.
if(a<=21 && b<=21){
return Math.max(a, b);
}
This is a easy problem, try yourself next time.