We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2d530c commit 425717eCopy full SHA for 425717e
scripts/algorithms/S/Super Egg Drop/Super Egg Drop.cpp
@@ -1,5 +1,6 @@
1
+// Runtime: 7 ms (Top 89.00%) | Memory: 6.1 MB (Top 94.15%)
2
/*
-Logic Here used is:
3
+Logic Here used is:
4
- we need to find, max no of floors soluiton can be found with K egg by using m move
5
- recursion will use like to find m moves no of floor count we need to add dp[m-1][k-1] & dp[m-1][k];
6
@@ -19,4 +20,3 @@ class Solution {
19
20
return m;
21
}
22
};
-
0 commit comments