Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 432 Bytes

README.markdown

File metadata and controls

17 lines (11 loc) · 432 Bytes

FREVO ON RAILS

Pernambuco Ruby Users Group

#Coding Dojo 1

When: 2010-01-27 09:00 AM

Where: Centro de Informática (UFPE)

##Problem Given some lists, obtain their cartesian product*. For instance, for lists [1,2] and [3,4,5], the result should be: Set.new [[1,3], [1,4], [1,5], [2,3], [2,4], [2,5]]

See more examples on the test file.

*We called it permutation on code.