Menu
Coddy logo textTech

Introduction

Lesson 1 of 14 in Coddy's Tries - Data Structures Series #8 course.

Welcome to the Data Structures Series (#8)!

If you are new, in this series, we will go over popular data structures (also known as, DSA).

Data structures are ways to organize and store data in a computer, making it easier to access, manipulate, and manage. They provide efficient algorithms for performing operations on data, such as searching, sorting, and inserting. 

 

In this course, we will dive into the Trie data structure, the engine behind fast prefix lookups and autocomplete.

Each course in the series will include:

  • Theory - Introduction to the specific data structure
  • Project - Create the data structure using the programming language of your choice.
  • Practice - Coding challenges designed to be solved using the learned data structure.

Let's get started!

Try it yourself

This lesson doesn't include a code challenge.

All lessons in Tries - Data Structures Series #8