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

Method solveV

app/src/main/java/solver/PyraminxV.java:171–179  ·  view source on GitHub ↗
(String scramble, int face)

Source from the content-addressed store, hash-verified

169 }
170
171 public static String solveV(String scramble, int face) {
172 init();
173 StringBuilder sb = new StringBuilder("\n");
174 for (int i = 0; i < 4; i++) {
175 if (((face >> i) & 1) != 0)
176 sb.append('\n').append("DLRF".charAt(i)).append(": ").append(solve(scramble, i));
177 }
178 return sb.toString();
179 }
180}

Callers 2

updateHintMethod · 0.95
generateScrambleMethod · 0.95

Calls 3

initMethod · 0.95
solveMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected