Inspired by @greweb's boilerplate
First time? Install the tools:
Inspired by @greweb's boilerplate
First time? Install the tools:
| 5 5 | |
| 4 2 | |
| 2 2 | |
| 2 -2 4 -1 3 | |
| -3 3 -1 3 -2 | |
| 1 -2 0 -2 3 | |
| -3 2 -3 2 -4 | |
| 4 -2 1 -3 2 |
| from math import factorial | |
| # Calculate the product of factorials without 50! | |
| # P = 1!2!3!4!...49!51!...98!99!100! | |
| P = 1 | |
| for i in range(1, 101): | |
| if i == 50: | |
| continue | |
| P *= factorial(i) |
| <html> | |
| <head> | |
| <title>Cube</title> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/85/three.min.js'></script> | |
| </head> | |
| <body> | |
| <div id="nine-colors-cube-container"></div> | |
| <script src='./orbitcontrols.js'></script> | |
| <script src='./main.js'></script> | |
| </body> |