Skip to content

Instantly share code, notes, and snippets.

@ra1ski

ra1ski/ranger.py Secret

Created July 17, 2020 03:11
для примера
@staticmethod
def merge_list_one_by_one(list_one: List[int], list_two: List[int]) -> List[int]:
"""
Смешивает один через один два листа
:param list_one: List[int]
:param list_two: List[int]
:param return: List[int]
"""
result = []
return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment