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

Method solveEoline

app/src/main/java/solver/EOline.java:116–123  ·  view source on GitHub ↗
(String scramble, int face)

Source from the content-addressed store, hash-verified

114 }
115
116 public static String solveEoline(String scramble, int face) {
117 StringBuilder sb = new StringBuilder("\n");
118 for (int i = 0; i < 6; i++) {
119 if (((face >> i) & 1) != 0)
120 sb.append(eoline(scramble, i * 2)).append(eoline(scramble, i * 2 + 1));
121 }
122 return sb.toString();
123 }
124}

Callers 2

updateHintMethod · 0.95
solve333Method · 0.95

Calls 2

eolineMethod · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected