摘要: Task description A DNA sequence can be represented as a string consisting of the letters A, C, G and T, which correspond to the types of successive nu 阅读全文
posted @ 2020-08-12 21:32 挨特·李 阅读(123) 评论(0) 推荐(0)
摘要: def solution(A, B, K): data_list = range(B+1)[A:] count=0 for i in data_list: if i%K == 0: count+=1 return count pass 阅读全文
posted @ 2020-08-12 16:21 挨特·李 阅读(120) 评论(0) 推荐(0)