/ranger.py Secret
Created
July 17, 2020 03:11
для примера
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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