Euler Preview (Project Euler)
🏠
Copy HTML
🌙
+ New
Rename
Delete
[h1]Welcome[/h1] You can use [b]BBCode[/b], inline TeX like $E=mc^2$, and blocks: $$ \int_{-\infty}^{\infty} e^{-x^2} \, dx = \sqrt{\pi} $$ [quote="euler"]Obvious is the most dangerous word in mathematics.[/quote] [collapse=Code Example] [code=python] def fib(n): a, b = 0, 1 for _ in range(n): a, b = b, a + b return a print(fib(10)) [/code] [/collapse] List:[list=1] [*] First [*] Second [/list] Hidden: [hide]Spoiler text[/hide], colors: [r]red[/r] and [g]green[/g].