mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-12-26 20:30:21 +00:00
Checkpoint
This commit is contained in:
parent
4bfdeae6aa
commit
04681447a5
@ -35,8 +35,8 @@ def simplify(a):
|
|||||||
return b
|
return b
|
||||||
|
|
||||||
# Given two sorted lists, merge them together into a minimal set of ranges. This could
|
# Given two sorted lists, merge them together into a minimal set of ranges. This could
|
||||||
# be done as a list merge nd then a combine step, but we want to be more efficient and
|
# be done as a list merge and then a combine step, but we want to be more efficient and
|
||||||
# do the merge-and-compbine at the same time
|
# do the merge-and-combine at the same time
|
||||||
def merge(a, b):
|
def merge(a, b):
|
||||||
if len(a) == 0:
|
if len(a) == 0:
|
||||||
return simplify(b)
|
return simplify(b)
|
||||||
|
Loading…
Reference in New Issue
Block a user