mirror of
https://github.com/ossu/computer-science.git
synced 2025-11-28 00:40:24 -05:00
add fossilized pattern 01.01.03
This commit is contained in:
parent
3e3f1987a2
commit
d7ebe7c4c7
2 changed files with 6 additions and 0 deletions
Binary file not shown.
|
|
@ -161,3 +161,9 @@ array1 = [1,3,4,6,8]
|
||||||
array2 = [2,5,7,9,10]
|
array2 = [2,5,7,9,10]
|
||||||
|
|
||||||
print merge(array1, array2)
|
print merge(array1, array2)
|
||||||
|
|
||||||
|
# The fossilized pattern (never end!)
|
||||||
|
|
||||||
|
i = 0
|
||||||
|
while i < n:
|
||||||
|
print(i)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue