Codility: PassingCars Solution

Lesson 5 Prefix Sums
1function solution(A) {
2 let count = 0
3 const prefixZeros = A.map(a => (count += a === 0 ? 1 : 0))
4 const res = prefixZeros.reduce(
5 (acc, el, i) => (acc += A[i] === 1 ? el : 0),
6 0
7 )
8 return res > 1e9 ? -1 : res
9}

Comments

Loading comments...

Tags

codility

Apply and earn a $2,500 bonus once you're hired on your first job!

Clients from the Fortune 500 to Silicon Valley startups

Choose your own rate, get paid on time

From hourly, part-time, to full-time positions

Flexible remote working environment

A lot of open JavaScript jobs!!

Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.

Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.

Next Post

Codility: MinAvgTwoSlice

Jan 21, 2021

Lesson 5 Prefix Sums

Previous Post

Codility: FrogRiverOne

Jan 20, 2021

Lesson 4 Counting Elements

HoningJS

Search Posts