Resultados de
It's pretty odd how a solution that uses more characters than usual can be the "leading solution" of a Cody problem and have the least size.  Compare these two codes that find the sum of integers from 1 to 2^x, which one uses fewer characters, thus should be the better solution?
function y = sum_int(x)
  regexp '' '(?@y=sum(1:2^x);)'
end 
function ans = sum_int(x)
sum(1:2^x)
end
