We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原 static int getIndex(int row, int col) => col * 9 + row; 应该改为 static int getIndex(int row, int col) => row * 9 + col;
static int getIndex(int row, int col) => col * 9 + row;
static int getIndex(int row, int col) => row * 9 + col;
库中虽未使用Matrix.getIndex函数,但可能对其他开发者带来困扰
Matrix.getIndex
这是很好的dart库 🎉
The text was updated successfully, but these errors were encountered:
感谢反馈,已修改
Sorry, something went wrong.
No branches or pull requests
原
static int getIndex(int row, int col) => col * 9 + row;
应该改为
static int getIndex(int row, int col) => row * 9 + col;
库中虽未使用
Matrix.getIndex
函数,但可能对其他开发者带来困扰这是很好的dart库 🎉
The text was updated successfully, but these errors were encountered: