proper spacing
This commit is contained in:
Deepak
2017-10-05 19:32:03 +05:30
committed by GitHub
parent a92743cd6f
commit cc4fda5d0c

View File

@ -38,8 +38,8 @@ public class EggDropping
}
}
}
return eggFloor[n][m];
return eggFloor[n][m];
}
//testing program
@ -47,7 +47,6 @@ public class EggDropping
{
int n = 2, m = 4;
//result outputs min no. of trials in worst case for n eggs and m floors
int result = minTrials(n, m);
System.out.println(result);
}