Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.4 KB

index.md

File metadata and controls

63 lines (50 loc) · 1.4 KB
layout
base
<script> var clip = function(id) { var el = document.getElementById(id); var txt = el.textContent.trim() navigator.clipboard.writeText(txt); }; </script> <style> .copy { color: #666; cursor: pointer; } .copy:hover { color: #444; } </style>

Competitive Programming Notebook

A selection of algorithms and data structures used in programming competitions by the team Rainbow Unicode Characters.

GitHub repo

{% for part in site.data.code_files %}

{{ part.name }}

{% for file in part.files %}

{{ file.name }}

{% 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 %}