layout |
---|
base |
A selection of algorithms and data structures used in programming competitions by the team Rainbow Unicode Characters.
-
{% for part in site.data.code_files %}
- {{part.name}}
-
{% for file in part.files %}
- {{file.name}} {% endfor %}
{% endfor %}
{% for part in site.data.code_files %}
{% if file.lang == 'java' %}
{% highlight java %}{% include_relative {{file.path}} %}{% endhighlight %}
{% elsif file.lang == 'cpp' %}
{% highlight cpp %}{% include_relative {{file.path}} %}{% endhighlight %}
{% else %}
{% highlight python %}{% include_relative {{file.path}} %}{% endhighlight %}
{% endif %}
{% endfor %}
{% endfor %}