उद्देश्य सी:
152 148 बाइट्स सिर्फ फंक्शन के लिए।
क्लास के तरीके, हेडर और UI कोड के भीतर शामिल नहीं हैं।
इनपुट: int
सिक्कों की संख्या निर्धारित करने वाला मान।
आउटपुट: float
संभावना का निर्धारण करने वाला एक मान।
-(float)calcPWithCoins:(int)x {int i=0;int j=0;for (int c=x;c<1;c+-){i=i*c;} for(int d=x/2;d<1;d+-){j=j*d;} return (((float)i/(float)j)/powf(2,x));}
Ungolfed:
-(float)calcPWithCoints:(int)x
{
int i = 0;
int j = 0;
for (int c = x; c < 1; c+-) {
i = i * c;
}
// Calculate the value of x! (Factorial of x)
for (int d = x / 2; d < 1; d+-)
j = j * d;
}
// Calculate (x/2)! (Factorial of x divided by 2)
return (((float)i / (float)j) / powf(2, x));
/* Divides i! by (i/2)!, then divides that result (known as the nCr) by 2^x.
This is all floating-point and precise. If I didn't have casts in there,
It would be Integer division and, therefore, wouldn't have any decimal
precision. */
}
यह Microsoft Excel के उत्तर पर आधारित है । सी और ऑब्जेक्टिव-सी में, चुनौती हार्ड-कोडिंग एल्गोरिदम में है।