Bucket Sort

Error : Image not created
Args : ['mmdc', '-p', '/tmp/tmpgsv3d1p2/puppeteer-config.json', '-o', '/tmp/tmpgsv3d1p2/out.svg']
stdout : 
stderr : 
No input file specified, reading from stdin. If you want to specify an input file, please use `-i .` You can use `-i -` to read from stdin and to suppress this warning.


Error: Could not find Chromium (rev. 1108766). This can occur if either
 1. you did not perform an installation before running the script (e.g. `npm install`) or
 2. your cache path is incorrectly configured (which is: /opt/buildhome/.cache/puppeteer).
For (2), check out our guide on configuring puppeteer at https://pptr.dev/guides/configuration.
    at ChromeLauncher.resolveExecutablePath (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/node_modules/puppeteer-core/lib/esm/puppeteer/node/ProductLauncher.js:263:27)
    at ChromeLauncher.executablePath (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js:176:25)
    at ChromeLauncher.computeLaunchArguments (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/node_modules/puppeteer-core/lib/esm/puppeteer/node/ChromeLauncher.js:93:37)
    at async ChromeLauncher.launch (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/node_modules/puppeteer-core/lib/esm/puppeteer/node/ProductLauncher.js:57:28)
    at async run (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/src/index.js:416:19)
    at async cli (file:///opt/build/repo/node_modules/@mermaid-js/mermaid-cli/src/index.js:192:3)

graph code : graph TD
    A["[0.78, 0.17, 0.39, 0.26, 0.72]"] --> B["Bucket 0: [0.17]"]
    A --> C["Bucket 1: [0.26, 0.39]"]
    A --> D["Bucket 2: []"]
    A --> E["Bucket 3: [0.72, 0.78]"]
    A --> F["Bucket 4: []"]
    B --> G["Sort each bucket"]
    C --> G
    D --> G
    E --> G
    F --> G
    G --> H["[0.17, 0.26, 0.39, 0.72, 0.78]"]