in reply to (Golf) Friday Golf: Print Formatted Sequence of Digits

Well, I've never really golfed before, but I'll give it a whirl...

# original example, 58 chars perl -e 'print join(" ", map { sprintf("%03u", $_) } (2..20)), "\n"'
# my golf score: 45 chars perl -e 'print((map{sprintf("%03u ",$_)}(2..20)),"\n")'

</ajdelore>