Skip to content

Commit b845981

Browse files
committed
Changed name of 13-02-wiederholungen-zaehlen to 13-02-counted-repetitions
Content was written in English but filename was German. Changed filename to English
1 parent 5ca43c3 commit b845981

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

steps/13-02-counted-repetitions.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
layout: step
3+
title: Counted Repetitions
4+
lang: en
5+
---
6+
<p>
7+
Words consist of syllables.
8+
Every syllable contains a vocal.
9+
Find all words with two syllables.
10+
</p>
11+
<div class="playfield">
12+
<input type="text" value="^$" class="regex" reference="^[^aeiou]*([aeiou]+([^aeiou]+|$)){2}$">
13+
<div class="message"></div>
14+
<ul class="examples">
15+
<li>circumflex</li>
16+
<li>dream</li>
17+
<li>angel</li>
18+
<li>angst</li>
19+
<li>honey</li>
20+
<li>mix</li>
21+
<li>hundrets</li>
22+
<li>flowers</li>
23+
<li>pineapple</li>
24+
<li>anemone</li>
25+
<li>yoga</li>
26+
</ul>
27+
</div>
28+
<p class="hint">
29+
Create a regular expression for vocals, then for consonants.
30+
The a and the vocals at the end need to be handled separately.
31+
</p>

0 commit comments

Comments
 (0)