Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 423 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 423 Bytes

Word search - Trie Data Structure

A simple application that checks whether a word you insert existst in the words_alpha.txt file by first reading all the words into a trie data structure.

The words_alpha file is taken from https://github.com/dwyl/english-words and I take no credit for the file.

Everything else present in this repository is fully my own work.