-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.html
13 lines (13 loc) · 985 Bytes
/
task.html
1
2
3
4
5
6
7
8
9
10
11
12
13
<b>Spellchecker</b> <a class=right href="https://hyperskill.org/learn/step/6551">Open on JetBrains Academy</a>
<br><br>
<html>
<head></head>
<body>
<p>Write a spellchecker that tells you which words in the sentence are spelled incorrectly. Use the dictionary in the code below.</p>
<p><strong>The input format:</strong></p>
<p>A sentence. All words are in the lowercase.</p>
<p><strong>The output format:</strong></p>
<p>All incorrectly spelled words in the order of their appearance in the sentence. If all words are spelled correctly, print <strong>OK</strong>.</p>
</body>
</html><br><b>Sample Input:</b><br>srutinize is to examene closely and minutely<br><b>Sample Output:</b><br>srutinize<br>examene<br><br><b>Sample Input:</b><br>all correct<br><b>Sample Output:</b><br>OK<br><br><br><font color="gray">Memory limit: 256 MB</font><br><font color="gray">Time limit: 15 seconds</font><br><br>
<a href="https://hyperskill.org/learn/step/6972">Show topic summary</a>