Algorithm
전체 글 54
Big-O List
List # Operation Example Big-O Index l[i] O(1) Store l[i] = 0 O(1) Length len(l) O(1) Append l.append(x) O(1) Pop l.pop() O(1) Slice l[a:b] O(b-a) Construction list(x) O(len(x)) Check l1 == l2 …
List # Operation Example Big-O Index l[i] O(1) Store l[i] = 0 O(1) Length len(l) O(1) Append …
2022-03-06 Log
Algorithm Study
Algorithm Study
2022-03-05 Log
Algorithm Study
Algorithm Study
2022-03-04 Log
Algorithm Study
Algorithm Study