Browse Source

Fix list & tree exercises

content-update
4 years ago
parent
commit
2ee1dfaf1d
  1. 0
      go/tests/func/btreeapplybylevel_test/main.go
  2. 0
      go/tests/func/btreeapplyinorder_test/main.go
  3. 0
      go/tests/func/btreeapplypostorder_test/main.go
  4. 0
      go/tests/func/btreeapplypreorder_test/main.go
  5. 0
      go/tests/func/btreedeletenode_test/main.go
  6. 0
      go/tests/func/btreeinsertdata_test/main.go
  7. 0
      go/tests/func/btreeisbinary_test/main.go
  8. 0
      go/tests/func/btreelevelcount_test/main.go
  9. 0
      go/tests/func/btreemax_test/main.go
  10. 0
      go/tests/func/btreemin_test/main.go
  11. 0
      go/tests/func/btreesearchitem_test/main.go
  12. 0
      go/tests/func/btreetransplant_test/main.go
  13. 0
      go/tests/func/correct/btree.go
  14. 0
      go/tests/func/correct/challenge.go
  15. 0
      go/tests/func/correct/listat.go
  16. 0
      go/tests/func/correct/listclear.go
  17. 0
      go/tests/func/correct/listfind.go
  18. 0
      go/tests/func/correct/listforeach.go
  19. 0
      go/tests/func/correct/listforeachif.go
  20. 0
      go/tests/func/correct/listlast.go
  21. 0
      go/tests/func/correct/listmerge.go
  22. 0
      go/tests/func/correct/listpushback.go
  23. 0
      go/tests/func/correct/listpushfront.go
  24. 0
      go/tests/func/correct/listremoveif.go
  25. 0
      go/tests/func/correct/listreverse.go
  26. 0
      go/tests/func/correct/listsize.go
  27. 0
      go/tests/func/correct/listsort.go
  28. 0
      go/tests/func/correct/sortedlistmerge.go
  29. 0
      go/tests/func/correct/sortlistinsert.go
  30. 0
      go/tests/func/listat_test/main.go
  31. 0
      go/tests/func/listclear_test/main.go
  32. 0
      go/tests/func/listfind_test/main.go
  33. 0
      go/tests/func/listforeach_test/main.go
  34. 0
      go/tests/func/listforeachif_test/main.go
  35. 0
      go/tests/func/listlast_test/main.go
  36. 0
      go/tests/func/listmerge_test/main.go
  37. 0
      go/tests/func/listpushback_test/main.go
  38. 0
      go/tests/func/listpushfront_test/main.go
  39. 0
      go/tests/func/listremoveif_test/main.go
  40. 0
      go/tests/func/listreverse_test/main.go
  41. 0
      go/tests/func/listsize_test/main.go
  42. 0
      go/tests/func/listsort_test/main.go
  43. 0
      go/tests/func/sortedlistmerge_test/main.go
  44. 0
      go/tests/func/sortlistinsert_test/main.go

0
go/tests/tofix/func/test_btreeapplybylevel.go → go/tests/func/btreeapplybylevel_test/main.go

0
go/tests/tofix/func/test_btreeapplyinorder.go → go/tests/func/btreeapplyinorder_test/main.go

0
go/tests/tofix/func/test_btreeapplypostorder.go → go/tests/func/btreeapplypostorder_test/main.go

0
go/tests/tofix/func/test_btreeapplypreorder.go → go/tests/func/btreeapplypreorder_test/main.go

0
go/tests/tofix/func/test_btreedeletenode.go → go/tests/func/btreedeletenode_test/main.go

0
go/tests/tofix/func/test_btreeinsertdata.go → go/tests/func/btreeinsertdata_test/main.go

0
go/tests/tofix/func/test_btreeisbinary.go → go/tests/func/btreeisbinary_test/main.go

0
go/tests/tofix/func/test_btreelevelcount.go → go/tests/func/btreelevelcount_test/main.go

0
go/tests/tofix/func/test_btreemax.go → go/tests/func/btreemax_test/main.go

0
go/tests/tofix/func/test_btreemin.go → go/tests/func/btreemin_test/main.go

0
go/tests/tofix/func/test_btreesearchitem.go → go/tests/func/btreesearchitem_test/main.go

0
go/tests/tofix/func/test_btreetransplant.go → go/tests/func/btreetransplant_test/main.go

0
go/tests/tofix/func/correct/btree.go → go/tests/func/correct/btree.go

0
go/tests/tofix/func/correct/challenge.go → go/tests/func/correct/challenge.go

0
go/tests/tofix/func/correct/listat.go → go/tests/func/correct/listat.go

0
go/tests/tofix/func/correct/listclear.go → go/tests/func/correct/listclear.go

0
go/tests/tofix/func/correct/listfind.go → go/tests/func/correct/listfind.go

0
go/tests/tofix/func/correct/listforeach.go → go/tests/func/correct/listforeach.go

0
go/tests/tofix/func/correct/listforeachif.go → go/tests/func/correct/listforeachif.go

0
go/tests/tofix/func/correct/listlast.go → go/tests/func/correct/listlast.go

0
go/tests/tofix/func/correct/listmerge.go → go/tests/func/correct/listmerge.go

0
go/tests/tofix/func/correct/listpushback.go → go/tests/func/correct/listpushback.go

0
go/tests/tofix/func/correct/listpushfront.go → go/tests/func/correct/listpushfront.go

0
go/tests/tofix/func/correct/listremoveif.go → go/tests/func/correct/listremoveif.go

0
go/tests/tofix/func/correct/listreverse.go → go/tests/func/correct/listreverse.go

0
go/tests/tofix/func/correct/listsize.go → go/tests/func/correct/listsize.go

0
go/tests/tofix/func/correct/listsort.go → go/tests/func/correct/listsort.go

0
go/tests/tofix/func/correct/sortedlistmerge.go → go/tests/func/correct/sortedlistmerge.go

0
go/tests/tofix/func/correct/sortlistinsert.go → go/tests/func/correct/sortlistinsert.go

0
go/tests/tofix/func/test_listat.go → go/tests/func/listat_test/main.go

0
go/tests/tofix/func/test_listclear.go → go/tests/func/listclear_test/main.go

0
go/tests/tofix/func/test_listfind.go → go/tests/func/listfind_test/main.go

0
go/tests/tofix/func/test_listforeach.go → go/tests/func/listforeach_test/main.go

0
go/tests/tofix/func/test_listforeachif.go → go/tests/func/listforeachif_test/main.go

0
go/tests/tofix/func/test_listlast.go → go/tests/func/listlast_test/main.go

0
go/tests/tofix/func/test_listmerge.go → go/tests/func/listmerge_test/main.go

0
go/tests/tofix/func/test_listpushback.go → go/tests/func/listpushback_test/main.go

0
go/tests/tofix/func/test_listpushfront.go → go/tests/func/listpushfront_test/main.go

0
go/tests/tofix/func/test_listremoveif.go → go/tests/func/listremoveif_test/main.go

0
go/tests/tofix/func/test_listreverse.go → go/tests/func/listreverse_test/main.go

0
go/tests/tofix/func/test_listsize.go → go/tests/func/listsize_test/main.go

0
go/tests/tofix/func/test_listsort.go → go/tests/func/listsort_test/main.go

0
go/tests/tofix/func/test_sortedlistmerge.go → go/tests/func/sortedlistmerge_test/main.go

0
go/tests/tofix/func/test_sortlistinsert.go → go/tests/func/sortlistinsert_test/main.go

Loading…
Cancel
Save