forked from menault/TD4_DEV51_Qualite_Algo
5 lines
193 B
Python
5 lines
193 B
Python
from tri_fusion import entree_tri_fusion_multi
|
|
|
|
tab = [[38, 27, 43, 3, 9, 82, 10], [1, 2, 3], [5, 4, 6], [12, 11]]
|
|
sorted_tab = entree_tri_fusion_multi(tab)
|
|
print("Tableau trié :", sorted_tab) |