This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>BBEditDocumentType</key> | |
<string>CodelessLanguageModule</string> | |
<key>BBLMLanguageDisplayName</key> <string>Dart</string> | |
<key>BBLMLanguageCode</key> <string>Dart</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:built_collection/built_collection.dart'; | |
import 'package:flutter/painting.dart'; | |
import 'package:sudoku/src/model/model.dart'; | |
import 'package:sudoku/src/model/model_extensions.dart'; | |
typedef CellSelector = CellCoordinate Function(CellCoordinate); | |
class InsetInfo { | |
/// The relative cell to check for selection to know if we need a line along | |
/// this edge. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var num = 5; | |
var factorial = 1; | |
for( var i = num ; i >= 1; i-- ) { | |
factorial = factorial * i ; | |
print(factorial); | |
} | |
print(factorial); | |
} |
OlderNewer