mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
5 lines
206 B
C#
5 lines
206 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));
|
|
}
|
|
}
|