Skip to content

Instantly share code, notes, and snippets.

@harsha-main
Created June 9, 2018 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harsha-main/702c00922542314ca786c16f291cafc0 to your computer and use it in GitHub Desktop.
Save harsha-main/702c00922542314ca786c16f291cafc0 to your computer and use it in GitHub Desktop.
Codewars sample
public static long findNb(long m) {
// your code
long sum=0;
int i=0;
while(sum<m){
i++;
sum+=i*i*i;
}
return i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment