08 2022 档案

摘要:捣鼓了挺久总算整出一个可行解 点击查看代码 class Queue(object): def __init__(self): super(Queue, self).__init__() self.max_index = -1 self.min_index = -1 self.data_list = 阅读全文
posted @ 2022-08-16 19:45 Coulson123 阅读(70) 评论(0) 推荐(0)
摘要:MicroSoft interview 2022 test1 Programing one 点击查看代码 def solution(S, B): # write your code in Python (Python 3.6) fixed = 0 holes = [] len_hole = 0 fo 阅读全文
posted @ 2022-08-15 17:23 Coulson123 阅读(54) 评论(1) 推荐(0)
摘要:Codility CountConformingBitmasks100% scores def solution(A, B, C): # write your code in Python 3.6 bit_list = [0] * 32 bit_A = [0] * 32 bit_B = [0] * 阅读全文
posted @ 2022-08-15 17:15 Coulson123 阅读(553) 评论(0) 推荐(0)