Files
TD4_DEV51_riera/test.py

5 lines
193 B
Python
Raw Permalink Normal View History

2025-10-15 09:54:55 +02:00
from tri_fusion import entree_tri_fusion_multi
2025-10-15 10:53:18 +02:00
tab = [[38, 27, 43, 3, 9, 82, 10], [1, 2, 3], [5, 4, 6], [12, 11]]
2025-10-15 09:54:55 +02:00
sorted_tab = entree_tri_fusion_multi(tab)
print("Tableau trié :", sorted_tab)