Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
func max_l(Array a, m = a[0]) {
|
||||
gather { a.each {|e| take(m = max(m, e)) } }
|
||||
}
|
||||
|
||||
func max_r(Array a) {
|
||||
max_l(a.flip).flip
|
||||
}
|
||||
|
||||
func water_collected(Array towers) {
|
||||
var levels = (max_l(towers) »min« max_r(towers))
|
||||
(levels »-« towers).grep{ _ > 0 }.sum
|
||||
}
|
||||
|
||||
[
|
||||
[ 1, 5, 3, 7, 2 ],
|
||||
[ 5, 3, 7, 2, 6, 4, 5, 9, 1, 2 ],
|
||||
[ 2, 6, 3, 5, 2, 8, 1, 4, 2, 2, 5, 3, 5, 7, 4, 1 ],
|
||||
[ 5, 5, 5, 5 ],
|
||||
[ 5, 6, 7, 8 ],
|
||||
[ 8, 7, 7, 6 ],
|
||||
[ 6, 7, 10, 7, 6 ],
|
||||
].map { water_collected(_) }.say
|
||||
Loading…
Add table
Add a link
Reference in a new issue