A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
11
Task/Flatten-a-list/AppleScript/flatten-a-list.applescript
Normal file
11
Task/Flatten-a-list/AppleScript/flatten-a-list.applescript
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
my_flatten({{1}, 2, {{3, 4}, 5}, {{{}}}, {{{6}}}, 7, 8, {}})
|
||||
|
||||
on my_flatten(aList)
|
||||
if class of aList is not list then
|
||||
return {aList}
|
||||
else if length of aList is 0 then
|
||||
return aList
|
||||
else
|
||||
return my_flatten(first item of aList) & (my_flatten(rest of aList))
|
||||
end if
|
||||
end my_flatten
|
||||
Loading…
Add table
Add a link
Reference in a new issue