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

Method solveEofc

app/src/main/java/solver/Cross.java:482–490  ·  view source on GitHub ↗
(String scramble, int side)

Source from the content-addressed store, hash-verified

480 }
481
482 public static String solveEofc(String scramble, int side) {
483 init();
484 StringBuilder sb = new StringBuilder("\n");
485 for (int i = 0; i < 6; i++) {
486 if (((side >> i) & 1) != 0)
487 sb.append(eofc(scramble, i * 2)).append(eofc(scramble, i * 2 + 1));
488 }
489 return sb.toString();
490 }
491
492 public static String eofc(String scramble, int side) {
493 String[] s = scramble.split(" ");

Callers 2

updateHintMethod · 0.95
solve333Method · 0.95

Calls 3

initMethod · 0.95
eofcMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected