Skip to content

Latest commit

 

History

History

303-mmmPie

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

mmmPie

Interview question of the issue #303 of rendezvous with cassidoo.

The Question

Given an array of people objects (where each person has a name and a number of pie pieces they’re hungry for) and a number for the number of pieces that the pie can be cut into, return the number of pies you need to buy.

Example:

> arr = [{ name: Joe, num: 9 }, { name: Cami, num: 3 }, { name: Cassidy, num: 4 }]
> mmmPie(arr, 8)
> 2 // 16 pieces needed, pies can be cut into 8 pieces, so 2 pies should be bought

Installing & Running

Just pnpm i to install all dependencies and then pnpm t to run the tests!