Searching around for tips for code golfing in Julia, on the Code Golf StackExchange came across discussion for this problem. From the discussion it appears there is a 60char/bye solution using repr and there is a 59char/byte solution using "$x".
another hint from the leaderboard is that the smallest solution is 59bytes/59chars, so no unicode trickeries.
But thereâs a shorter solution with 61bytes/57chars which may imply the use of â (3bytes/1char)
The primary different approach I have tried is to use something like "$x FizzBuzz"[start condition:end condition] or another variation because besides using max to compare strings "$x" and "Fizz^(x%x<1)*"Buzz"^(x%5<1) not sure how using "$x" would helpâgiven that at least one of the 59char/byte solutions involves using that interpolation.
So I know there is a 60 char/byte solution that uses repr and I got a 61byte/char so maybe analyzing it can give a hint how they got the 60 byte/char. x=1:100;@.println(max("Fizz"^(1>x%3)*"Buzz"^(1>x%5),repr(x)))