Skip to content

Commit 425717e

Browse files
committed
Runtime: 7 ms (Top 89.00%) | Memory: 6.1 MB (Top 94.15%)
1 parent c2d530c commit 425717e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/algorithms/S/Super Egg Drop/Super Egg Drop.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
// Runtime: 7 ms (Top 89.00%) | Memory: 6.1 MB (Top 94.15%)
12
/*
2-
Logic Here used is:
3+
Logic Here used is:
34
- we need to find, max no of floors soluiton can be found with K egg by using m move
45
- 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];
56
@@ -19,4 +20,3 @@ class Solution {
1920
return m;
2021
}
2122
};
22-

0 commit comments

Comments
 (0)