Skip to content

Instantly share code, notes, and snippets.

View DavoBR's full-sized avatar

Davo DavoBR

  • Remote
  • 12:28 (UTC -04:00)
View GitHub Profile
@DavoBR
DavoBR / WordFinder.cs
Last active November 29, 2023 03:08
Developer Challenge - Word Finder in C#
string[] matrix = [
"a b c d c",
"i g w i o",
"c h i l l",
"p q n s d",
"u v d x y"
];
string[] wordstream = [
"cold",
@DavoBR
DavoBR / main.dart
Last active October 16, 2020 12:31
ListView into Row
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override