Skip to content

Instantly share code, notes, and snippets.

@Shinya-T
Created June 17, 2014 08:11
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 Shinya-T/e46ca8c95f1e511e7399 to your computer and use it in GitHub Desktop.
Save Shinya-T/e46ca8c95f1e511e7399 to your computer and use it in GitHub Desktop.
Calc.java
class Calc {
public int cnt = 0;
public void calc(int n, int m) {
cnt++;
if (m > n)
return;
for (int i = 0; i < n; i++) {
calc(n, m + 1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment