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

Method solveXcross

app/src/main/java/solver/Cross.java:407–416  ·  view source on GitHub ↗
(String scramble, int face)

Source from the content-addressed store, hash-verified

405 }
406
407 public static String solveXcross(String scramble, int face) {
408 init();
409 StringBuilder sb = new StringBuilder("\n");
410 for (int i = 0; i < 6; i++)
411 if (((face >> i) & 1) != 0) {
412 sb.append("\nXCross(").append(color[face]).append("): ");
413 sb.append(xcross(scramble, i));
414 }
415 return sb.toString();
416 }
417
418 public static String solveXcross(String scramble) {
419 init();

Callers 4

onClickMethod · 0.95
onCreateDialogMethod · 0.95
updateHintMethod · 0.95
solve333Method · 0.95

Calls 3

initMethod · 0.95
xcrossMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected