fix(curriculum): three instructions/description for CAP (#55002)

This commit is contained in:
Tom
2024-05-29 13:21:24 -05:00
committed by GitHub
parent 0f7b8cd3f4
commit b234cf8097
3 changed files with 15 additions and 14 deletions

View File

@@ -13,16 +13,14 @@ The `font-size` property is used to specify how large the text is in a given ele
# --instructions--
<p>In the <code>style</code> tags, set the <code>font-size</code> of the:</p>
In the `style` tags, set the `font-size` of the:
<ul>
<li><code>h1</code> tag to 68px.</li>
<li><code>h2</code> tag to 52px.</li>
<li><code>h3</code> tag to 40px.</li>
<li><code>h4</code> tag to 32px.</li>
<li><code>h5</code> tag to 21px.</li>
<li><code>h6</code> tag to 14px.</li>
</ul>
- `h1` tag to 68px.
- `h2` tag to 52px.
- `h3` tag to 40px.
- `h4` tag to 32px.
- `h5` tag to 21px.
- `h6` tag to 14px.
# --hints--

View File

@@ -8,8 +8,7 @@ dashedName: problem-194-coloured-configurations
# --description--
Consider graphs built with the units A:
<img class="img-responsive" alt="graph unit A" src="https://cdn.freecodecamp.org/curriculum/project-euler/coloured-configurations-1.png" style="display: inline-block; background-color: white; padding: 10px;">
Consider graphs built with the units A: <img class="img-responsive" alt="graph unit A" src="https://cdn.freecodecamp.org/curriculum/project-euler/coloured-configurations-1.png" style="display: inline-block; background-color: white; padding: 10px;">
and B: <img class="img-responsive" alt="graph unit B" src="https://cdn.freecodecamp.org/curriculum/project-euler/coloured-configurations-2.png" style="display: inline-block; background-color: white; padding: 10px;">, where the units are glued along the vertical edges as in the graph <img class="img-responsive" alt="graph with four units glued along the vertical edges" src="https://cdn.freecodecamp.org/curriculum/project-euler/coloured-configurations-3.png" style="display: inline-block; background-color: white; padding: 10px;">.
A configuration of type $(a,b,c)$ is a graph thus built of $a$ units A and $b$ units B, where the graph's vertices are coloured using up to $c$ colours, so that no two adjacent vertices have the same colour. The compound graph above is an example of a configuration of type $(2,2,6)$, in fact of type $(2,2,c)$ for all $c ≥ 4$

View File

@@ -12,9 +12,13 @@ dashedName: relational-databases-and-sqlite
# --description--
<a href="https://www.sqlite.org/download.html" target="_blank" rel="noopener noreferrer nofollow">Download SQLite</a>
<a href="https://sqlitebrowser.org/dl/" target="_blank" rel="noopener noreferrer nofollow">Download DB Browser for SQLite</a>
<a href="https://www.sqlite.org/famous.html" target="_blank" rel="noopener noreferrer nofollow">SQLite usage</a>
More resources:
\- <a href="https://www.sqlite.org/download.html" target="_blank" rel="noopener noreferrer nofollow">Download SQLite</a>
\- <a href="https://sqlitebrowser.org/dl/" target="_blank" rel="noopener noreferrer nofollow">Download DB Browser for SQLite</a>
\- <a href="https://www.sqlite.org/famous.html" target="_blank" rel="noopener noreferrer nofollow">SQLite usage</a>
# --question--