All pastes #2115654 Raw Edit

Unnamed

public text v1 · immutable
#2115654 ·published 2012-02-09 23:11 UTC
rendered paste body
        String a = "1 2 3 4 5 6 7 6 8 9 6 10 6";
        String j1 = "1 2 * 6 8 * 6";
        String j2 = "1 * 6";
        String j3 = "1 2 * 6 10 9";
        System.out.println (a);
        System.out.println (j1);
        System.out.println (samePattern(a,j1)+ "\t should be: true");
        System.out.println (a);
        System.out.println (j2);
        System.out.println (samePattern(a,j2)+ "\t should be: true");
        System.out.println (a);
        System.out.println (j3);
        System.out.println (samePattern(a,j3)+ "\t should be: false");