15 lines
326 B
Python
15 lines
326 B
Python
import pytest
|
|
from solution import Solution
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"piles, h, expected",
|
|
[
|
|
([3, 6, 7, 11], 8, 4),
|
|
([30, 11, 23, 4, 20], 5, 30),
|
|
([30, 11, 23, 4, 20], 6, 23),
|
|
],
|
|
)
|
|
def test_min_eating_speed(piles, h, expected):
|
|
assert Solution().minEatingSpeed(piles, h) == expected
|