December-software-project/sort-algo

View on GitHub
src/visualizer/algorithm/sortingalgorithms/swap.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const swap = (i, j, arr) => {
  let temp = arr[i];
  arr[i] = arr[j];
  arr[j] = temp;
};