Skip to content

Latest commit

 

History

History
46 lines (43 loc) · 1.51 KB

index.md

File metadata and controls

46 lines (43 loc) · 1.51 KB
layout title languages
page
Exercises
SQL
R
Python
Access

SQL | R | Python | Access

{% for language in page.languages %}

{{ language }}

{% if language == 'Python' or language == 'Access' %} {{ language }} exercises were used in previous iterations of the course at Utah State University, but are no longer under active development. {%endif%}

{% for exercise in site.pages %} {% if exercise.layout == 'exercise' and exercise.language == language %} {% capture output_file %}{{ exercise.url | remove: 'exercises' | remove: '/' | prepend: '/solutions/' }}{% endcapture %} {% endif %} {% endfor %}
Topic Title Output
{{ exercise.topic | replace:'and','&' }} {{ exercise.title }} {% for solution in site.static_files %} {% if solution.path contains output_file %} [{{ solution.path | split:"." | last}}] {% endif %} {% endfor %}

[back to top]

{% endfor %}