yusijie
2025-11-12 c1f786beffce7b9c3a0c89d315df98c745d0c607
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Pub_Class
{
    public class Cell
    {
        public int Row;
        public int Col;
    }
}