Get URL
Micropip
Invocation Tree
Web Debugger
GitHub
PyPI
Memory
Graph
Config
Fit
+
−
100%
Continue
Step Over
Step Into
Step Out
Stop
Play
secs
def permutations(elements, perm, n): if n == 0: print(perm) else: for element in elements: permutations(elements, perm + element, n-1) permutations('LR', '', 3)
URL Copied to Clipboard
The following URL has been copied to your clipboard with:
Installed micropip packages
The current code
Set breakpoints
Playback timestep
Current Play/Pause state