All translations
Jump to navigation
Jump to search
Enter a message name below to show all available translations.
Found 2 translations.
Name | Current message text |
---|---|
h Czech (cs) | Možností, jak kódovat text, je nahradit časté dvojice znaků novými (do té doby nepoužívanými) znaky. V tomto úkolu byste měli implementovat funkci, která dekóduje takový kódovaný text. Funkce <code>decode</code> přebírá kódovaný text a slovník. Slovník je posloupnost párů, kde první prvek je zakódovaný znak (<code>Char</code>) a druhý prvek je původní pár (jako <code>String</code> délky 2). Výsledkem je originální text. Což je ve skutečnosti text z parametru, kde byly všechny kódované znaky nahrazeny původními dvojicemi znaků. |
h English (en) | On possibility how to encode text is to replace frequent pairs of characters by a new (until that time, not used) character. In this task, you should implement a function that decodes such encoded text. The function <code>decode</code> takes an encoded text and a vocabulary. Vocabulary is a sequence of pairs, where the first element is an encoded character (<code>Char</code>) and the second element is the original pair (as <code>String</code> of the length 2). The result is an original text. In fact, it is the text from the parameter, where all encoded characters were replaced by its original pairs of characters. |