

You lost me at return oriented programming. Getting something working out of that is way more difficult than doing it out of vib coding. (Way more impressive though)
You lost me at return oriented programming. Getting something working out of that is way more difficult than doing it out of vib coding. (Way more impressive though)
I think the image assumes that the viewer is familiar with merge sort, which is something you will learn in basically every undegraduate CS program, then never use.
To answer your first question, it helps to have something to compare it against. I think the most obvious way of sorting a list would be “insertion sort”, where you look through the unsorted list, find the smallest element, put that in the sorted list, then repeat for the second smallest element. If the list has N elements, this requires you to loop through it N times. Since every loop involves looking at N elements, this means you end up taking N * N time to sort the list.
With merge sort, the critical observation is that if you have 2 sublists that are sorted you know the smallest element is at the start of one of the two input lists, so you can skip the inner loop where you would search for the smallest element. The means that each layer in merge sort takes only about N operations. However, each layer halves the number of lists, so you only need about log_2(N) layers, so the entire sort can be done in around N * log(N) time.
Since NlogN is smaller then N^2, this makes merge sort theoretically better.
Yes, I’ve 3d printed circles from freecad without issue. There are some precision options when converting to a mesh. I always set them to the tolerances of my 3d printer.
Overall, it still has a lot of rough edges though.
The treaty itself does not have any enforcement mechanism; however the US does. US courts recognize ratified treaties as having equal weight to laws passed the normal way Ratifying the Treaty would immediately make it federal law. The US has a robust enough legal system that the courts would the (over years of building up case law) determine exactly what that means.
As with all open problems in computer science, we solved these back in the 80s.