Skip to content

Instantly share code, notes, and snippets.

@Abhishek-Chaudhary-InfoCepts
Last active August 8, 2019 02:02
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 Abhishek-Chaudhary-InfoCepts/d692d6ca330d6393b991fc63fe5ea457 to your computer and use it in GitHub Desktop.
Save Abhishek-Chaudhary-InfoCepts/d692d6ca330d6393b991fc63fe5ea457 to your computer and use it in GitHub Desktop.
public class UniquePath {
public int uniquePaths(int m, int n) {
// add more comments
if (m == 0 || n == 0) {
return 0;
}
int[][] dp = new int[m][n];
for (int i = 0; i < n; i++) {
dp[0][i] = 1;
}
for (int i = 0; i < m; i++) {
dp[i][0] = 1;
}
for (int i = 1; i < m; i++) {
for (int j = 1; j < n; j++) {
dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
}
}
return dp[m - 1][n - 1];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment