Skip to content

daniilzimin4/SpellChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

SpellChecker

Given 2 texts. Your task is to print all unique words from the second text that are not present in the first text.

Sample tests

Input 1

to be or not to be
6
to study or not to study

Output

study

Implementation details

Self-implemented hash map based on vectors and buckets. Attempt to independently implement a built-in C++ hashmap.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages