排序方式

排序方式

置换Array.prototype.swap = function(i, j) {      var temp = this[i];     this[i] = this[j];     this[j] = temp; }算法 - 冒泡排序Array.…
Watrt4年前 (2022-06-23)代码21690
micrpython编译javascript版

micrpython编译javascript版

1、首先安装emsdkgit clone https://github.com/emscripten-core/emsdk.git cd <path-to-emsdk> git pull ./emsdk install latest ./emsdk activate latest source ./emsdk_env.sh2、获取micropython源码git clone&…
Watrt4年前 (2022-06-22)Wpython21790
Configure & Build

Configure & Build

Configure and build Linux kernel for Surface RTEditing kernel build configurationFirst run the command make ARCH=arm tegra_defconfigThis will create a standard kernel config for tegra SoC's.Open the file .config in the kernel source directory wit…
Watrt4年前 (2022-06-02)LINUX23730