Skip to content

Instantly share code, notes, and snippets.

View malik100's full-sized avatar

Malik Yurtbilir malik100

View GitHub Profile
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Colors.blue,
body: ListView(
children: [
@malik100
malik100 / ödev
Last active February 25, 2021 23:57
import 'package:flutter/material.dart';
void main() {
// Bir array olusturdum ic ice bir array yani her bir yuva icinde bi array barindiriyor.
// Siralar, ve kolomlari temsil ediyor.
final List<List<int>> sonuc = [
[4, 3, 6, 7, 8, 9, 1, 2, 5],
[5, 9, 7, 1, 2, 3, 4, 6, 8],
[1, 8, 2, 6, 4, 5, 9, 7, 3],
[2, 7, 9, 4, 5, 1, 3, 8, 6],