You are viewing a single comment's thread. Return to all comments →
int maximumDraws(int n) { if (n == 1 || n == 0) return 2; else return n + 1;
}
Heres my silly billy answer in C
Seems like cookies are disabled on this browser, please enable them to open this website
Maximum Draws
You are viewing a single comment's thread. Return to all comments →
int maximumDraws(int n) { if (n == 1 || n == 0) return 2; else return n + 1;
}
Heres my silly billy answer in C