[FULL Version] with js modifiable:
https://observablehq.com/d/1dbb5ea4edb292ae
Static version:
https://alvaro-jmp.web.app/notes-discrete-math-platzi/
If you want to play, test, etc with repl.it:
https://repl.it/@alvarojmp/notes-discrete-math-platzi
View this notebook in your browser by running a web server in this folder. For example:
python -m SimpleHTTPServer
Or, use the Observable Runtime to import this module directly into your application. To npm install:
npm install @observablehq/runtime@4
npm install https://api.observablehq.com/d/1dbb5ea4edb292ae.tgz?v=3
Then, import your notebook and the runtime as:
import {Runtime, Inspector} from "@observablehq/runtime";
import define from "1dbb5ea4edb292ae";
To log the value of the cell named “foo”:
const runtime = new Runtime();
const main = runtime.module(define);
main.value("foo").then(value => console.log(value));