Build games and learn Computer Science.
\ Data structures form the foundation of efficient software development, yet traditional learning methods often make them feel abstract and disconnected from real-world applications. This article takes a different approach — combining theory with hands-on implementation in Flutter to make learning both engaging and practical.
\ Inspired by Google’s Applied CS with Android, this adaptation for Flutter provides an interactive way to understand Arrays, HashSets, and HashMaps. In just 3–4 hours, you’ll gain a deeper understanding of these fundamental data structures while applying them in a meaningful context.
\ Whether you’re a beginner looking to strengthen your CS fundamentals or an experienced developer aiming to refine your skills, this guide offers an efficient and enjoyable way to master essential data structures. Let’s get started.
The Objectives of This Article:We will use a few data structures in the workshop activity, so please review Lists, HashSets, and HashMaps. You should be able to confidently insert, delete, access, and check the existence of elements using these data structures in Dart.
\ This is a small introduction to the data structures, HashSets and HashMap.
https://youtu.be/O-zTuD8JRbE?embedable=true
https://youtu.be/eMymKAFYaCs?embedable=true
\
A small starter exercise warm-up:As an example activity using HashMaps, create a program (not necessarily a Flutter app — command-line is fine) that will take in a three-letter country code (see ISO-3166) and return the full name of the country to which it belongs.
\ For example:
\
Input | Output ----- | ---------------------------------------------------- GBR | United Kingdom of Great Britain and Northern Ireland IDN | Indonesia IND | India\ As an extension, if the input is greater than 3 letters, consider it as the name of a country, and return the three-letter code for it. Write a helpful error message if the input is neither a valid code nor a country name.
\ Let us begin.
AnagramsAn anagram is a word formed by rearranging the letters of another word. For example, cinema is an anagram of iceman.
https://youtu.be/_C33CdeHgrc?embedable=true
The mechanics of the game are as follows:The game provides the user with a word from the dictionary.
\
The user tries to create as many words as possible that contain all the letters of the given word plus one additional letter. Note that adding the extra letter at the beginning or the end without reordering the other letters is invalid. For example, if the game picks the word ‘ore’ as a starter, the user might guess ‘rose’ or ‘zero’ but not ‘sore’.
\
The user can give up and see the words they did not guess.
\
\ \
We have provided you with some starter code that contains a 10,000-word dictionary and handles the UI portions of this game and you will be responsible for writing the AnagramBlocclass that handles all word manipulations.
\
Tour of the CodeThe starter code is composed of three main dart classes:
\ anagrams_page.dart
This is simple code that represents the screen we see above. We will use a bloc for state management for the screen. We will start by setting up the game by firing an event to the bloc and defining what will happen when the screen responds to different game states.
\
import 'package:anagrams/anagrams/bloc/anagram_bloc.dart'; import 'package:anagrams/anagrams/domain/word.dart'; import 'package:anagrams/l10n/l10n.dart'; import 'package:bloc_presentation/bloc_presentation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; class AnagramsPage extends StatelessWidget { const AnagramsPage({super.key}); @override Widget build(BuildContext context) { return BlocProvider( create: (_) => AnagramBloc() ..add( SetupAnagrams( DefaultAssetBundle.of(context), ), ), child: const AnagramsView(), ); } } class AnagramsView extends StatelessWidget { const AnagramsView({super.key}); @override Widget build(BuildContext context) { final l10n = context.l10n; return Scaffold( appBar: AppBar(title: Text(l10n.anagramAppBarTitle)), body: BlocBuilder\
\
\
\
\ anagram_states.dart
\
enum AnagramGameStatus { initial, loaded, gameError } const minNumAnagrams = 5; const defaultWordLength = 3; const maxDefaultWordLength = 7; @immutable final class AnagramState extends Equatable { factory AnagramState({ AnagramGameStatus status = AnagramGameStatus.initial, ListAll Rights Reserved. Copyright , Central Coast Communications, Inc.