時間複雜度:
O(1) = 公式解
O(n) = 1 層迴圈
O(n^2) = 2 層迴圈
0(log n) = 對半切
空間複雜度:
O(1) = 不會用到額外 array
O(n) = 會用到跟 input 成正本的一層 array
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
git filter-branch -f --env-filter \ | |
"GIT_AUTHOR_NAME='chairco'; GIT_AUTHOR_EMAIL='<[email protected]>'; GIT_COMMITTER_NAME='chairco'; GIT_COMMITTER_EMAIL='<[email protected]>';" HEAD |
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
import numpy as np | |
def normalize(X): | |
"""數據標準化處理 | |
Args: | |
X 樣本 | |
Returns: | |
XNorm 標準化後的樣本 | |
""" | |
XNorm = X.copy() |
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
def solveSudoku(board): | |
""" | |
:type board: List[List[str]] | |
:rtype: void Do not return anything, modify board in-place instead. | |
""" | |
while True: | |
board = check_row(board=board) | |
board = check_col(board=board) | |
board = check_group(board=board) |
package main
import "fmt"
func main() {
a := 0
times := 10000 // <-- HERE
c := make(chan bool)
無聊看到人家 fb 上問題
sum([ i**2 for i in list(range(10, 115, 13)) if (i**2)%10 not in [1,6,9]])
def solution(A):
# write your code in Python 3.6
points = []
for row_idx, row in enumerate(A):
row_max = max(row[1:-1])
row_min = min(row[1:-1])
for col_idx, col in enumerate(row[:-1]):
col_max = max(list(zip(*A[1:-1]))[col_idx])
col_min = min(list(zip(*A[1:-1]))[col_idx])
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
# not upload | |
# local test file | |
client/ | |
.pytest_cache/ | |
src/.pytest_cache/ | |
command.txt | |
src/render.html |
參考: https://www.quora.com/How-do-I-convert-integers-to-binary-in-Python-3
int('0011',2) # 將 0011 轉換成 3
A = [[0,0,1,1], [0,0,0,1]]
return sum(int(''.join(map(str,a)),2) for a in A) #加總這兩個值