fork download
  1. import java.util.Arrays;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. String[][] inputs = {
  6. {"floor", "break"},
  7. {"wood", "book"},
  8. {"a fall to the floor", "braking the door in"}
  9. };
  10.  
  11. Arrays.stream(inputs)
  12. .forEach(cur -> {
  13. for(int i = 0; i < cur[0].length(); i++) {
  14. if(cur[0].charAt(i) != cur[1].charAt(i)) {
  15. System.out.println(cur[0]);
  16. cur[0] = new StringBuilder(cur[0])
  17. .replace(i, i + 1, Character.toString(cur[1].charAt(i)))
  18. .toString();
  19. }
  20. }
  21.  
  22. System.out.println(cur[0] + "\n");
  23. });
  24. }
  25. }
Success #stdin #stdout 0.08s 711680KB
stdin
Standard input is empty
stdout
floor
bloor
broor
breor
brear
break

wood
bood
book

a fall to the floor
b fall to the floor
brfall to the floor
braall to the floor
brakll to the floor
brakil to the floor
brakin to the floor
brakingto the floor
braking o the floor
braking t the floor
braking ththe floor
braking thehe floor
braking the e floor
braking the d floor
braking the dofloor
braking the dooloor
braking the dooroor
braking the door or
braking the door ir
braking the door in