mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 08:19:06 +01:00
6 lines
207 B
C#
6 lines
207 B
C#
|
public class Solution {
|
||
|
public int PoorPigs(int buckets, int minutesToDie, int minutesToTest) {
|
||
|
return (int) Math.Ceiling(Math.Log(buckets) / Math.Log(1 + minutesToTest / minutesToDie));
|
||
|
}
|
||
|
}
|