733
  • 2023-03-31leetcode-733-easy
    FloodFillAnimageisrepresentedbyanmxnintegergridimagewhereimage[i][j]representsthepixelvalueoftheimage.Youarealsogiventhreeintegerssr,sc,andcolor.Youshouldperformafloodfillontheimagestartingfromthepixelimage[sr
  • 2023-03-03力扣简733 图像渲染
    深度是不断用新值递归调用且新值执行完执行到底才会做下一个递归 看了一眼什么是深度优先和广度优先然后算是一遍过写的是广度优先对于里面存的(x,y)对,本来是要创个类
  • 2022-10-17 Codeforces Round #733 D
    D.SecretSanta答案就是每一个数字是否出现很容易想到的就是我们只能满足一个人的要求(如果这一组人都选择同一个人所以我们直接就这样乱搞就可以了然后剩下的随便连一
  • 2022-10-14733. 图像渲染
    733.图像渲染来自<https://leetcode.cn/problems/flood-fill/>classSolution{public://bfsintdx[4]={-1,0,1,0};intdy[4]={0,1,0,-1};ve