Codility: OddOccurrencesInArray Solution
Lesson 2 Arrays1function solution(A) {2 const group = A.reduce((acc, el) => {3 acc.set(el, (acc.get(el) || 0) + 1)4 return acc5 }, new Map())6 for (const g of group) {7 if (g[1] % 2 !== 0) {8 return g[0]9 }10 }11}
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: FrogJmp
Lesson 3 Complexity
Previous Post
Codility: PermMissingElem
Lesson 3 Complexity