An easy problem to solve, we have made it before, but didn't realize it's a dp solution.
class Solution {
public:
int uniquePaths(int m, int n) {
int dp[105][105];
for(int i=0;i<100;i++){
for(int j=0;j<100;j++){
dp[i][j]=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];
}
};