电脑关机
了解 Windows电脑的关机方式
HTML Vector graphics
Now you understand the usage of SVG.
HTML5 Web Storage
Note: This section must invovled in some JS prerequistes for better understanding.
Most major modern web sites are dynamic — they store data on the server using some kind of database (server-side st ...
Leetcode - Ranges
Leetcode - Ranges
Leetcode - hamming
Leetcode - Numbers
Leetcode - / Binary
Leetcode - Binary
Leetcode - Dynamic programming
Leetcode - Dynamic programming
Leetcode - Reverse
Leetcode - Reverse
Leetcode - Heap
Leetcode - Heap
RNA-Seq Flow
A string of similar strings
指针
C
123456789101112131415#include <stdio.h>int main(int argc, char const *argv[]){ int x = 1,y = 2; printf("%d %p\n",x,&x ); printf("%d %p\n",y,&y); x = y; printf("%d %p\n",x,&x ); p ...
If
控制流的元素
https://cloud.tencent.com/developer/article/1523672
If
1234567891011if name == 'Mary': print('Hello Mary') if password == 'swordfish': print('Access granted.') else: print('W ...
Recursive
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677"""函数递归调用 - 函数直接或者间接的调用了自身1. 收敛条件2. 递归公式n! = n * (n-1)! ...
简单算法
Sys & OS for Python3
查找算法
顺序查找
123456def seq_search(items, key): """顺序查找""" for index, item in enumerate(items): if item == key: return index return -1
折半查找
123456789101112def bin_search(items, ke ...
Leetcode - 36. Valid Sudoku
Leetcode - 36. Valid Sudoku













