@indigo widget
File Attachments Not Allowed
For safety reasons we do not allow files with certain file extensions.
letingoaddict Said
void main(){ List magicSquare = [ [2, 7, 6], [9, 5, 1], [4, 3, 8], ]; List checkingMagicFuncs = [ coloumnChecker(magicSquare), rowChecker(magicSquare), rightDiagonalChecker(magicSquare), leftDiagonalChecker(magicSquare), ]; functionChecker(checkingMagicFuncs); }basically all i need is someone to review my code :
also im thinking of creating one function nameddiagonalCheckerand take either "left" or "right" as arg instead of creating two functionsrightDiagonalCheckerandleftDiagonalCheckerto reduce redundancy maybe?
Code Formatting
You can share your code using triple backticks like this:
```
YOUR CODE
```
Large Portions of Code
For longer scripts use Hastebin or GitHub Gists and share the link here
Ignored these files due to them having disallowed file extensions
- magic_square.dart
