Skip to content

Instantly share code, notes, and snippets.

View tushortz's full-sized avatar
❤️
One Love

Taiwo Kareem tushortz

❤️
One Love
View GitHub Profile
{
".3g2": "video/3gpp2",
".3gp": "video/3gpp",
".7z": "application/x-7z-compressed",
".aac": "audio/aac",
".abw": "application/x-abiword",
".afm": "application/x-font-type1",
".ai": "application/postscript",
".aiff": "audio/x-aiff",
".arc": "application/x-freearc",
@tushortz
tushortz / number-diamomd.py
Created January 20, 2025 20:09
Number diamond generator
# Number of rows
rows = 4
# Upper Triangle
k = 2 * rows - 2
num = 0
# Outer loop to handle number of rows
for i in range(rows):
# Inner loop to handle number of spaces