Skip to content

Instantly share code, notes, and snippets.

View AlexKenbo's full-sized avatar
🎯
We will write a chat app =)

ALEKSANDR VASILEV AlexKenbo

🎯
We will write a chat app =)
View GitHub Profile
@AlexKenbo
AlexKenbo / main.dart
Last active March 22, 2020 12:34
Поведение картинки при bottom / top
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
final config = {
'primaryColor': Colors.grey[200],
};
class MyApp extends StatelessWidget {
@override
@AlexKenbo
AlexKenbo / main.dart
Last active January 15, 2021 10:51
Сортировка выбором O(n х n)
import 'dart:math';
void main() {
var rng = new Random();
var testList = List<int>.generate(10, (_) => rng.nextInt(30) - rng.nextInt(10));
print(testList);
print(selectionSort(testList));