Skip to content

Instantly share code, notes, and snippets.

@johanbrook
Created September 29, 2014 13:46
Show Gist options
  • Save johanbrook/5a535364f574aab6654f to your computer and use it in GitHub Desktop.
Save johanbrook/5a535364f574aab6654f to your computer and use it in GitHub Desktop.
Recursive doll counter.
public static int recursiveDollCounter(Doll doll) {
if(doll.isCore()) {
return 0;
}
else {
doll.removeOuterLayer();
return recursiveDollCounter(doll) + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment