Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 429 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 429 Bytes

pset5 for Harvard's CS50 - Introduction to Computer Science.

Usage: ./speller [dictionary] textfile

Given a .txt file and (optionally) a dictionary, the program creates a trie using the dictionary and then finds all misspelled words in the .txt file by comparing every word to the trie. Program runs in ~2 seconds regardless of how large the .txt file is.

Problem set page: https://docs.cs50.net/problems/speller/speller.html