Skip to content

Commit 2fb7e45

Browse files
committed
chore: update authors due to user changing their username
1 parent c057911 commit 2fb7e45

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

List.ark

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# (let collection [1 2 5 12])
2727
# (let p (product collection)) # => 120
2828
# =end
29-
# @author https://github.com/FrenchMasterSword
29+
# @author https://github.com/Unactived
3030
(let product (fun (_L) {
3131
(mut _index 0)
3232
(mut _output 1)
@@ -44,7 +44,7 @@
4444
# (let collection [1 2 5 12])
4545
# (let p (sum collection)) # => 20
4646
# =end
47-
# @author https://github.com/FrenchMasterSword
47+
# @author https://github.com/Unactived
4848
(let sum (fun (_L) {
4949
(mut _index 0)
5050
(mut _output 0)
@@ -144,7 +144,7 @@
144144
# (let cool [1 2 3 4 5 6 7 8 9])
145145
# (print (reduce cool (fun (a b) (+ a b)))) # 45
146146
# =end
147-
# @author https://github.com/FrenchMasterSword
147+
# @author https://github.com/Unactived
148148
(let reduce (fun (_L _f) {
149149
(mut _index 1)
150150
(mut _output (@ _L 0))
@@ -243,7 +243,7 @@
243243
# (let zipped [[1 5] [2 6] [3 7] [4 8]])
244244
# (print (unzip zipped)) # [[1 2 3 4] [5 6 7 8]]
245245
# =end
246-
# @author https://github.com/FrenchMasterSword
246+
# @author https://github.com/Unactived
247247
(let unzip (fun (_L) {
248248
(let _m (len _L))
249249
(mut _list1 [])
@@ -266,7 +266,7 @@
266266
# (let b [5 6 7 8])
267267
# (print (zip a b)) # [[1 5] [2 6] [3 7] [4 8]]
268268
# =end
269-
# @author https://github.com/FrenchMasterSword
269+
# @author https://github.com/Unactived
270270
(let zip (fun (_a _b) {
271271
(let _m (math:min (len _a) (len _b)))
272272
(mut _c [])

0 commit comments

Comments
 (0)