Skip to content

Instantly share code, notes, and snippets.

@arowM
Created November 21, 2012 11:13
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 arowM/4124383 to your computer and use it in GitHub Desktop.
Save arowM/4124383 to your computer and use it in GitHub Desktop.
ret=0;
for(i= 1 to TOO_BIG){
for(j= 1 to i){
for(k= 1 to j){
for(l= 1 to k){
tmp=notSoHeavyTask(i, j, k, l);
ret=tmp if(ret < tmp);
}
}
}
}
return ret;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment