mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-08 03:01:24 +00:00
10 lines
220 B
Python
10 lines
220 B
Python
from typing import Any, Sequence
|
|
|
|
|
|
def get_best_covering_pairs(
|
|
input_arguments: Sequence[Sequence[Any]],
|
|
) -> Sequence[Sequence[Any]]:
|
|
from allpairspy import AllPairs
|
|
|
|
return list(AllPairs(input_arguments))
|