-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpellChecker.h
More file actions
27 lines (22 loc) · 757 Bytes
/
Copy pathSpellChecker.h
File metadata and controls
27 lines (22 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Created by max on 29.04.21.
//
// Function check is self written.
//
// Used from GitHub at: https://github.com/LordHypersonic/C-Spell-Checker/blob/master/Spell%20Checker/spell_checker.cpp
//
/*
Program: spell checker
Description: It is a spell checker program. It checks if the spelling of entered word is right or wrong. I spelling is wrong it give suggestions of correct spellings.
Author: Lord Hypersonic
Email: lordhypersonic.522@gmail.com
Website: www.lordhypersonic.blogspot.com
*/
#ifndef UNSCRAMBLER_SPELLCHECKER_H
#include <string>
#include <vector>
#define UNSCRAMBLER_SPELLCHECKER_H
struct SpellChecker {
static bool isCorrect(const std::string &word, const std::vector<std::string> &dict);
};
#endif //UNSCRAMBLER_SPELLCHECKER_H