Skip to content

Instantly share code, notes, and snippets.

@sdycode
sdycode / allsizes.dart
Last active August 19, 2022 11:42
lively-waterfall-4486
void main() {
List<String> l =[
"1920×1080", "1366×768 ", "360×640 ", "414×896 ", "1536×864 ",
"375×667 ",
];
l.forEach((e){
int a = int.parse(e.trim().split('×')[0]);
int b = int.parse(e.trim().split('×')[1]);
print(a/b);