Codility: EquiLeader Solution

Lesson 8 Leader

Approach

Calculate 2 prefix leaders, for the array and its reversed

The result is number of equal pairs

Implementation

1function solution(A) {
2 const getPrefixLeader = A => {
3 let maxOcc, maxEl
4
5 let prefixLeader = Array(A.length)
6 maxOcc = maxEl = -Infinity
7 A.reduce((acc, el, i) => {
8 const occ = (acc[el] || 0) + 1
9 acc[el] = occ
10 if (maxOcc < occ) {
11 maxOcc = occ
12 if (occ > Math.floor((i + 1) / 2)) {
13 maxEl = el
14 }
15 }
16 if (!(maxOcc > Math.floor((i + 1) / 2))) {
17 maxEl = -1
18 }
19
20 prefixLeader[i] = maxEl
21 return acc
22 }, {})
23
24 return prefixLeader
25 }
26
27 const prefixLeader = getPrefixLeader(A)
28 const prefixLeaderReversed = getPrefixLeader(A.reverse()).reverse()
29
30 return prefixLeader.filter(
31 (p, i) => p !== -1 && p === prefixLeaderReversed[i + 1]
32 ).length
33}

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: Dominator

Jan 24, 2021

Lesson 8 Leader

HoningJS

Search Posts