Anagram Substring Search problem in F#
One interesting problem I read about as I prepare for various technical interviews is the so called Anagram Substring Search problem where it can be boiled down to the question “find all permutations of s within b“. Naturally, after all my endeavours with Project Euler and Advent of Code, I cast my mind to how I’d solve this in …