Created
April 18, 2015 15:54
-
-
Save bearprada/7c39de2b11fd26576e87 to your computer and use it in GitHub Desktop.
quiz_match_company_times
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (Company comp : companies) { | |
int userIdx = 0 | |
for (Time time : comp.times) { | |
(0..5).each { | |
time.add(comp.user[userIdx++]) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment