tangled
alpha
login
or
join now
digi.rip
/
dollcode
4
fork
atom
my version of @dis.sociat.ing's dollcode algorithm in python
4
fork
atom
overview
issues
pulls
pipelines
Type hinting adjustments.
digi.rip
1 month ago
91477f55
5be61d6e
+2
-2
1 changed file
expand all
collapse all
unified
split
main.py
+2
-2
main.py
reviewed
···
8
8
9
9
10
10
def dollcode(num: int):
11
11
-
output = []
11
11
+
output: list[str] = []
12
12
window = num
13
13
limit = 1000
14
14
···
26
26
return output
27
27
28
28
29
29
-
def print_dollcode(output):
29
29
+
def print_dollcode(output: list[str]):
30
30
string = ""
31
31
32
32
for char in output: