-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpractice.html
executable file
·27 lines (26 loc) · 1011 Bytes
/
practice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
---
<div class="container page-container practice">
<h1 class="text-center">Practice</h1>
<p class="text-center lead">Hone your C skills with some challenging questions.</p>
<div class="col-12">
<h2>Crazy With C - <span class="lead">Try solving some challenging output questions</span></h2>
<ol>
{% for collection in site.crazy_with_c %}
<li>
<a href="{{ site.baseurl }}{{ collection.url }}"><span class="title">{{ collection.title }} - {{ collection.serial }}</span></a></li>
{% endfor %}
</ol>
</div>
<div class="col-12">
<h2>Code Like Pro! - <span class="lead">Get your hands dirty with some coding problems</span></h2>
<ol>
{% for collection in site.code_like_pro %}
<li>
<a href="{{ site.baseurl }}{{ collection.url }}"><span class="title">{{ collection.title }}</span></a>
</li>
{% endfor %}
</ol>
</div>
</div>