Nothing
# Takes a bit string and flips its elements based on a given mutation rate.
#
mutateBits = function(x, rate = 1 / length(x)) {
n = length(x)
flip = rbinom(n, 1, rate)
(x + flip) %% 2
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.