kyu_6.casino_chips package

Submodules

kyu_6.casino_chips.solve module

kyu_6.casino_chips.solve.solve(arr: list) → int[source]

You are given three piles of casino chips: white, green and black chips:

the first pile contains only white chips the second pile contains only green chips the third pile contains only black chips

Each day you take exactly two chips of different colors and head to the casino. You can chose any color, but you are not allowed to take two chips of the same color in a day.

You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.

Parameters

arr

Returns

kyu_6.casino_chips.test_solve module

class kyu_6.casino_chips.test_solve.SolveTestCase(methodName='runTest')[source]

Bases: unittest.case.TestCase

Testing solve function

test_solve()[source]

Module contents