MCPcopy
hub / github.com/mgechev/google-interview-preparation-problems / next-permutation.js

File next-permutation.js

src/next-permutation.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// https://leetcode.com/problems/next-permutation/description/
2
3const swap = (a, i, j) => {
4 const t = a[i];

Callers

nothing calls this directly

Calls 1

nextPermutationFunction · 0.85

Tested by

no test coverage detected