[1] data structures #182

Open
lomakinae wants to merge 11 commits from lomakinae/2026-rff_mp:data_structures into develop
2 changed files with 7 additions and 1 deletions
Showing only changes of commit a7cdcd99b9 - Show all commits

View File

@ -0,0 +1,6 @@
from src.experiment import main_experiment
from src.plot import build_plots
if __name__ == "__main__":
main_experiment()
build_plots()

View File

@ -31,4 +31,4 @@ def ht_list_all(buckets):
records = []
for head in buckets:
records.extend(ll_list_all(head))
return sorted(records)
return sorted(records)