/kaprekar_wasm

Attempting to calculate Kaprekar's Constant using Go and wasm

Primary LanguageHTMLMIT LicenseMIT

kaprekar_wasm

Attempting to calculate Kaprekar's Constant using Go and Web Assembly

Kaprekar's Constant is 6174 and happens if you take a four digit number where all the values are not repeeating, arrange digits largest to smallest and subtract smallest to largest at most 7 times,

Build

To copy the built in Go wasm file

cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .

To build the wasm file run:

GOOS=js GOARCH=wasm go build -o kaprekar.wasm

The file for wasm build by go can be copied to this directory

cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .

Or I used jsdelivr.com to make the git repo file https://github.com/golang/go/blob/master/misc/wasm/wasm_exec.js into a cdn https://cdn.jsdelivr.net/gh/golang/go@master/misc/wasm/wasm_exec.js

References

https://golangbot.com/webassembly-using-go/ https://brilliant.org/wiki/kaprekars-constant/ https://codepo8.github.io/css-fork-on-github-ribbon/