I hereby claim:
- I am idarthjedi on github.
- I am darthjedi (https://keybase.io/darthjedi) on keybase.
- I have a public key ASAEM793rVtiG5BiXs6vLsmD-54KwXkKsUQHg126T6srRwo
To claim this, I am signing this object:
def print_alpha_rangoli(size): | |
alpha = [x for x in 'abcdefghijklmnopqrstuvwxyz'] | |
output = [] | |
display = [] | |
# determine the total width of the alphabet rangoli | |
width = (size + (size - 1)) + ((size + (size - 1)) - 1) | |
# for each of the letters in reverse order (starting inside out) | |
for lin in range(size -1, -1, -1): |
import argparse | |
import math | |
from binascii import unhexlify | |
def egcd(a, b): | |
if a == 0: | |
return b, 0, 1 | |
else: |
I hereby claim:
To claim this, I am signing this object: