MCPcopy Index your code
hub / github.com/MeigenChou/DCTimer-Android / swap

Method swap

app/src/main/java/solver/Utils.java:101–104  ·  view source on GitHub ↗
(int[] arr, int a, int b, int c, int d)

Source from the content-addressed store, hash-verified

99 }
100
101 public static void swap(int[] arr, int a, int b, int c, int d) {
102 int temp = arr[a]; arr[a] = arr[b]; arr[b] = temp;
103 temp = arr[c]; arr[c] = arr[d]; arr[d] = temp;
104 }
105
106 public static void swap(int[] arr, int a, int b) {
107 int temp = arr[a]; arr[a] = arr[b]; arr[b] = temp;

Callers 15

randomPuzMethod · 0.95
imageMethod · 0.95
GearClass · 0.95
idxToPermMethod · 0.95
initMethod · 0.95
moveMethod · 0.95
permMoveMethod · 0.95
moveMethod · 0.95
moveMethod · 0.95
moveMethod · 0.95
imageMethod · 0.95
initMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected