Gin框架介绍及使用 | 李文周的博客 (liwenzhou.com)
lesson03_gin框架初识_哔哩哔哩_bilibili
1.路由引擎
//路由引擎
rgin.Default()
2.一些http请求方法
get post put delete等等
遇到什么路径,执行什么函数 r.GET("/hello",func{做你想做的事返回…
1.数独单元 public struct SudokuCell{public SudokuCell() : this(0, 0, 0){}public SudokuCell(int x, int y, int number){X x; Y y; Number number;}public int X { get; set; }public int Y { get; set; }public int Number { get; set; }}
2.数独创建
public class …