in reply to (Golf) Grey code
sub grey{ my($b)=@_;my$l=$b<2?['']:grey($b-1); [map("0$_",@$l),map"1$_",reverse@$l] } [download]