LeetCode-Solutions icon indicating copy to clipboard operation
LeetCode-Solutions copied to clipboard

Problem Number | Title | Language

Open mkn-root12 opened this issue 3 years ago • 1 comments

class Solution { public: int poorPigs(int buckets, int minutesToDie, int minutesToTest) { return ceil(log(buckets) / log(minutesToTest / minutesToDie + 1)); } };

mkn-root12 avatar Aug 06 '22 04:08 mkn-root12

Solution for the leetcode hard problem -poor Pig

mkn-root12 avatar Aug 06 '22 04:08 mkn-root12

Solution for the leetcode hard problem -poor Pig

Hi! There is a guideline for submitting solutions. Please go through it and make PRs accordingly.

juhikushwah avatar Oct 10 '22 02:10 juhikushwah