Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)IL
Posts
5
Comments
773
Joined
2 yr. ago

  • A city. Or a small town with city level amenities and reachability. Some place where I don't need a car for regular and even some irregular errands.

    I'm quite pleased with where I am right now, a provincial capital in NL. If I'd have to scale down, Houten looks quite promising. If I'd be forced to scale up and leave the country, the four places that pop to my mind that interest me are Freiburg (DE), Vienna (AT), Helsinki (FI) and Oslo (NO).

  • Tbf, Merge Sort has a Big O of n log (n) in all cases, so it's a pretty mid sorting algorithm in general, but it's conceptually straightforward and easy to explain to newbies.

  • If you want to zipper two sorted lists, you compare the first element of each list, pick that first, take the next element of that list, rinse & repeat until one list runs out and then just chuck the entire rest of the other list in the remaining space, even if that's just one element. Since your two initial lists are already sorted, you can trust the combined list to also be sorted.