[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[QUIZ] My Little Ruby Valentine (#192

Daniel Moore

2/13/2009 3:47:00 PM

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

The three rules of Ruby Quiz:

1. Please do not post any solutions or spoiler discussion for this
quiz until 48 hours have elapsed from the time this message was
sent.

2. Support Ruby Quiz by submitting ideas and responses
as often as you can! Visit: <http://rubyquiz.str...

3. Enjoy!

Suggestion: A [QUIZ] in the subject of emails about the problem
helps everyone on Ruby Talk follow the discussion. Please reply to
the original quiz message, if you can.

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

## My Little Ruby Valentine (#192)

Write a program that presents a Valentine's day card. You may wish to
present text with a design, image or some colorful ASCII. There are no
formal requirements, you may choose to make it as simple, complex, or
creative as you like.

--
-Daniel
http://rubyquiz...

1 Answer

Daniel Moore

2/22/2009 2:15:00 AM

0

There was no response to this week's quiz on the mailing list, but
like a ray of hope peeking out through dark clouds there was *one*
solution:

ruby -e 'puts [[3,3],9,9,7,5,3,1].map{|t|[*t].map{|n|"*"*n}.join("
").center(9)}'

(posted via Twitter: http://twitter.com/mrcryn/status/...)

I will summarize my feelings with a modified version of Ryan's solution:

puts [[3,0,0,0,3],[4,0,0,5],[5,0,0,4],[4,0,0,3],[3,0,0,2],[1,0,0,2],[0,1]].map{|t|[*t].map{|n|"*"*n}.join("
").center(13)}

--
-Daniel
http://rubyquiz...