-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorrection.h
97 lines (45 loc) · 1.5 KB
/
correction.h
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#ifndef CORRECTION_H
#define CORRECTION_H
#include <iostream>
#include <string>
#include "check.h"
using namespace std;
int getOpeningBracesIndex(string markedString);
int getClosingBracesIndex(string markedString);
void removeOpeningBraces(string &markedString);
void removeClosingBraces(string &markedString);
void removeBraces(string &markedString);
bool isLegal(char a);
//error 10: <{{!}}
string correctError10(string markedString);
void testCorrectError10();
//error 11: <!{{-}}
string correctError11(string markedString);
void testCorrectError11();
//error 12: <!-- {{--}}
string correctError12(string markedString);
void testCorrectError12();
//error 13: <{{!}}
string correctError13(string markedString);
void testCorrectError13();
//error 14: <{{/}}a>
string correctError14(string markedString);
void testCorrectError14();
//error 15: </{{a}}
string correctError15(string markedString);
void testCorrectError15();
//error 16: </{{a}}
string correctError16(string markedString);
void testCorrectError16();
//error 17: <{{a}}>
string correctError17(string markedString);
void testCorrectError17();
//error 18: <?{{first 3 letters after '?' symbol}}
string correctError18(string markedString);
void testCorrectError18();
//error 19: {{<}}a>
string correctError19(string markedString);
void testCorrectError19();
string correct(string text);
void testCorrect();
#endif // CORRECTION_H