zhaungcheng
zhaungcheng
全部文章
题解
归档
标签
去牛客网
登录
/
注册
zhaungcheng的博客
全部文章
/ 题解
(共2篇)
题解 | #求路径 ii#
class Solution { public: int uniquePathsWithObstacles(vector<vector<int> >& obstacleGrid) { // write code here if(...
动态规划
2021-06-07
0
586
题解 | #走方格的方案数#
#include<iostream> #include<vector> using namespace std; int main(){ int m,n; // 表示行列 while(cin>>m>>n...
动态规划
2021-06-07
0
445