mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
refactor: improve Python types for is-valid-array-subsequence/python/function
This commit is contained in:
parent
b31e144201
commit
45ae2dcf5c
@ -1,11 +1,14 @@
|
||||
from typing import TypeVar
|
||||
import sys
|
||||
|
||||
T = TypeVar('T')
|
||||
|
||||
input_values: list[str] = []
|
||||
for value in sys.stdin:
|
||||
input_values.append(value.rstrip('\n'))
|
||||
|
||||
|
||||
def get_is_valid_subsequence(array: list, sequence: list):
|
||||
def get_is_valid_subsequence(array: list[T], sequence: list[T]) -> bool:
|
||||
index_to_check = 0
|
||||
for index in range(len(array)):
|
||||
if index_to_check < len(sequence) and array[index] == sequence[index_to_check]:
|
||||
|
Loading…
Reference in New Issue
Block a user