>>108190323
5 seconds in Github Copliot:
[if mod i 15==0 then "FizzBuzz"else if mod i 3==0 then "Fizz"else if mod i 5==0 then "Buzz"else show i|i<-[1..100]]
Human produced on Feb 25, 2012 by Calvin Bottoms
[max(show x)(concat[n|(f,n)<-[(3,"Fizz"),(5,"Buzz")],mod x f==0])|x<-[1..100]]