Skip to content

GH-96 #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Dec 25, 2022
Prev Previous commit
Next Next commit
update
  • Loading branch information
rain1024 committed Dec 25, 2022
commit 4775119be7cd8fcea6f5592a64f2f2f8fc7a7785
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Big-O</td>
<td>
<a href="/concepts/python/big-o.md"><code>py</code></a>
<a href="/concepts/python/big-o.md"><code>py🐍</code></a>
<a href="/concepts/typescript/big-o.md"><code>ts</code></a>
</td>
<tr>
<td>Bitwise</td>
<td>
<a href="/concepts/python/bitwise.md"><code>py</code>
<a href="/concepts/python/bitwise.md"><code>py🐍</code></a>
<a href="/concepts/cpp/bitwise.md"><code>cpp</code></a>
</td>
</tr>
Expand All @@ -41,7 +41,7 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Array</td>
<td>
<a href="/concepts/python/array.md"><code>py</code></a>
<a href="/concepts/python/array.md"><code>py🐍</code></a>
<a href="/concepts/typescript/array.md"><code>ts</code></a>
</td>
</tr>
Expand All @@ -58,7 +58,7 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Stack</td>
<td>
<a href="/concepts/python/stack.md"><code>py</code></a>
<a href="/concepts/python/stack.md"><code>py🐍</code></a>
<a href="/concepts/typescript/stack.md"><code>ts</code></a>
</td>
</tr>
Expand Down
30 changes: 30 additions & 0 deletions programming_languages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Programming Languages

<table>
<thead>
<th>Programming Language</th>
<th>Code</th>
<th>Mascot</th>
<th>Full</th>
</thead>
<tbody>
<tr>
<td>C++</td>
<td>cpp</td>
<td><a href="https://emojipedia.org/rat/">🐀</a></td>
<td>cpp🐀</td>
</tr>
<tr>
<td>Java</td>
<td>java</td>
<td><a href="https://emojipedia.org/hot-beverage/">☕</a> (<a href="https://www.javatpoint.com/java-logo">[1]</a>)</td>
<td>java☕</td>
</tr>
<tr>
<td>Python</td>
<td>py</td>
<td><a href="https://emojipedia.org/snake/">🐍<a></td>
<td>py🐍</td>
</tr>
</tbody>
</table>