You are viewing a single comment's thread. Return to all comments →
Java
public static long taumBday(int b, int w, int bc, int wc, int z) { return ((long) b * Math.min(wc + z, bc)) + ((long) w * Math.min(bc + z, wc)); }
Taum and B'day
You are viewing a single comment's thread. Return to all comments →
Java