This commit is contained in:
Electrominch
2022-10-07 00:48:48 +03:00
parent 0b88604037
commit e711e64e07
18 changed files with 45 additions and 45 deletions

View File

@@ -13,7 +13,7 @@ public class Solution
int size = r * c;
if (size != height * width)
return mat;
for(int i = 0; i < size; i++)
for (int i = 0; i < size; i++)
{
int ySource = i / width;
int xSource = i % width;