chore(i18n,learn): processed translations (#44851)
This commit is contained in:
@ -0,0 +1,103 @@
|
||||
---
|
||||
id: 594810f028c0303b75339ad4
|
||||
title: ワードラップ
|
||||
challengeType: 5
|
||||
forumTopicId: 302344
|
||||
dashedName: word-wrap
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
今日でも、プロポーショナルフォントや複雑なレイアウトの場合に、特定の段落でワードラップする必要がある場合があります。 基本的なタスクは、単純な方法でテキストの段落にワードラップをかけることです。
|
||||
|
||||
# --instructions--
|
||||
|
||||
このテキストを任意の文字数でワードラップできる関数を記述してください。 例えば、80 文字でワードラップしたテキストは以下のようになります:
|
||||
|
||||
<pre>
|
||||
TeX の Knuth–Plass アルゴリズムのようなより洗練されたアルゴリズムを使用してテキストをワードラップしてみましょう。 使用する言語でこのアルゴリズムを実装する場合、簡単に追加点を得られます。ただし、このアルゴリズムが単純な最小限の長さのアルゴリズムよりも優れていることを示す参考資料を提示する必要があります。
|
||||
</pre>
|
||||
|
||||
# --hints--
|
||||
|
||||
wrap は関数とします。
|
||||
|
||||
```js
|
||||
assert.equal(typeof wrap, 'function');
|
||||
```
|
||||
|
||||
wrap は文字列を返す必要があります。
|
||||
|
||||
```js
|
||||
assert.equal(typeof wrap('abc', 10), 'string');
|
||||
```
|
||||
|
||||
wrap(80) は 4 行を返す必要があります。
|
||||
|
||||
```js
|
||||
assert(wrapped80.split('\n').length === 4);
|
||||
```
|
||||
|
||||
`wrap` 関数は期待されるテキストを返す必要があります。
|
||||
|
||||
```js
|
||||
assert.equal(wrapped80.split('\n')[0], firstRow80);
|
||||
```
|
||||
|
||||
wrap(42) は 7 行を返す必要があります。
|
||||
|
||||
```js
|
||||
assert(wrapped42.split('\n').length === 7);
|
||||
```
|
||||
|
||||
`wrap` 関数は期待されるテキストを返す必要があります。
|
||||
|
||||
```js
|
||||
assert.equal(wrapped42.split('\n')[0], firstRow42);
|
||||
```
|
||||
|
||||
# --seed--
|
||||
|
||||
## --after-user-code--
|
||||
|
||||
```js
|
||||
const text =
|
||||
`Wrap text using a more sophisticated algorithm such as the Knuth and Plass TeX algorithm.
|
||||
If your language provides this, you get easy extra credit,
|
||||
but you ''must reference documentation'' indicating that the algorithm
|
||||
is something better than a simple minimum length algorithm.`;
|
||||
|
||||
const wrapped80 = wrap(text, 80);
|
||||
const wrapped42 = wrap(text, 42);
|
||||
|
||||
const firstRow80 =
|
||||
'Wrap text using a more sophisticated algorithm such as the Knuth and Plass TeX';
|
||||
|
||||
const firstRow42 = 'Wrap text using a more sophisticated';
|
||||
```
|
||||
|
||||
## --seed-contents--
|
||||
|
||||
```js
|
||||
function wrap(text, limit) {
|
||||
return text;
|
||||
}
|
||||
```
|
||||
|
||||
# --solutions--
|
||||
|
||||
```js
|
||||
function wrap(text, limit) {
|
||||
const noNewlines = text.replace('\n', '');
|
||||
if (noNewlines.length > limit) {
|
||||
// find the last space within limit
|
||||
const edge = noNewlines.slice(0, limit).lastIndexOf(' ');
|
||||
if (edge > 0) {
|
||||
const line = noNewlines.slice(0, edge);
|
||||
const remainder = noNewlines.slice(edge + 1);
|
||||
return line + '\n' + wrap(remainder, limit);
|
||||
}
|
||||
}
|
||||
return text;
|
||||
}
|
||||
```
|
Reference in New Issue
Block a user