MCPcopy Create free account
hub / github.com/MeigenChou/DCTimer-Android / solveFace

Method solveFace

app/src/main/java/solver/Cube2Face.java:87–94  ·  view source on GitHub ↗
(String scramble, int face)

Source from the content-addressed store, hash-verified

85 }
86
87 public static String solveFace(String scramble, int face) {
88 StringBuilder sb = new StringBuilder("\n");
89 for (int i = 0; i < 6; i++) {
90 if (((face >> i) & 1) != 0)
91 sb.append(solve(scramble, i));
92 }
93 return sb.toString();
94 }
95}

Callers 2

updateHintMethod · 0.95
solve222Method · 0.95

Calls 2

solveMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected