Mariano Gappa
Mariano Gappa
> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...
Let's say the data is separated by commas. This input: ``` 1,2,3 1,,3 1,2,3 ``` Should be interpreted as 3 rows and 3 columns with all floats, the second row...
There's a very common case for input that looks like this: ``` 1 5 10 11 12 ... ``` It's not clear what `chart` should do in this case. The...
Currently, the "draw" action does not exist. At any point during the game, any player may propose draw, and the opponent may accept. Thus, this is a valid action and...
Currently, `InputAction` looks like this: ```go type InputAction struct { FromSquare string `json:"fromSquare"` ToSquare string `json:"toSquare"` PromotionPieceType string `json:"promotionPieceType"` } ``` This means that an action can only be referenced...