0
votes
Algorithm to tell if two arrays have identical members.
What is the "best" solution obviously depends on what constraints you have. If it's a small data set, the sorting, hashing, or brute force comparison (like …
2
votes
What “already invented” algorithm did you invent?
During an interview, I came up with the Knuth shuffle (or Fisher-Yates Shuffle, as it is also known). I was quite proud af …
3
votes
Why null-terminated strings? Or: null-terminated vs. characters + length storage.
Just throwing out some hypotheticals:
there's no way to get a "wrong" implementation of null terminated strings. A standardized struct however could have vendor-specific implementati …
