Nothing
# Converting gray code to binary integer 1
gray2bin = function(gray){
bin = rep(NA, length(gray))
bin[1] = gray[1]
for(i in 2:length(bin))
bin[i]= xor(gray[i], bin[i-1])
return(bin)
}
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.