-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtranspose.spec.js
121 lines (110 loc) · 4.08 KB
/
transpose.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import { transpose } from './transpose';
describe('Transpose', () => {
test('empty string', () => {
expect(transpose([])).toEqual([]);
});
test('two characters in a row', () => {
const input = ['A1'];
const expected = ['A', '1'];
expect(transpose(input)).toEqual(expected);
});
test('two characters in a column', () => {
const input = ['A', '1'];
const expected = ['A1'];
expect(transpose(input)).toEqual(expected);
});
test('simple', () => {
const input = ['ABC', '123'];
const expected = ['A1', 'B2', 'C3'];
expect(transpose(input)).toEqual(expected);
});
test('single line', () => {
const input = ['Single line.'];
const expected = ['S', 'i', 'n', 'g', 'l', 'e', ' ', 'l', 'i', 'n', 'e', '.'];
expect(transpose(input)).toEqual(expected);
});
test('first line longer than second line', () => {
const input = ['The fourth line.', 'The fifth line.'];
const expected = ['TT', 'hh', 'ee', ' ', 'ff', 'oi', 'uf', 'rt', 'th', 'h ', ' l', 'li', 'in', 'ne', 'e.', '.'];
expect(transpose(input)).toEqual(expected);
});
test('second line longer than first line', () => {
const input = ['The first line.', 'The second line.'];
const expected = ['TT', 'hh', 'ee', ' ', 'fs', 'ie', 'rc', 'so', 'tn', ' d', 'l ', 'il', 'ni', 'en', '.e', ' .'];
expect(transpose(input)).toEqual(expected);
});
test('square', () => {
const input = ['HEART', 'EMBER', 'ABUSE', 'RESIN', 'TREND'];
const expected = ['HEART', 'EMBER', 'ABUSE', 'RESIN', 'TREND'];
expect(transpose(input)).toEqual(expected);
});
test('rectangle', () => {
const input = ['FRACTURE', 'OUTLINED', 'BLOOMING', 'SEPTETTE'];
const expected = ['FOBS', 'RULE', 'ATOP', 'CLOT', 'TIME', 'UNIT', 'RENT', 'EDGE'];
expect(transpose(input)).toEqual(expected);
});
test('triangle', () => {
const input = ['T', 'EE', 'AAA', 'SSSS', 'EEEEE', 'RRRRRR'];
const expected = ['TEASER', ' EASER', ' ASER', ' SER', ' ER', ' R'];
expect(transpose(input)).toEqual(expected);
});
test('many lines', () => {
const input = ['Chor. Two households, both alike in dignity,', 'In fair Verona, where we lay our scene,', 'From ancient grudge break to new mutiny,', 'Where civil blood makes civil hands unclean.', 'From forth the fatal loins of these two foes', 'A pair of star-cross\'d lovers take their life;', 'Whose misadventur\'d piteous overthrows', 'Doth with their death bury their parents\' strife.', 'The fearful passage of their death-mark\'d love,', 'And the continuance of their parents\' rage,', 'Which, but their children\'s end, naught could remove,', 'Is now the two hours\' traffic of our stage;', 'The which if you with patient ears attend,', 'What here shall miss, our toil shall strive to mend.'];
const expected = [
'CIFWFAWDTAWITW',
'hnrhr hohnhshh',
'o oeopotedi ea',
'rfmrmash cn t',
'.a e ie fthow ',
' ia fr weh,whh',
'Trnco miae ie',
'w ciroitr btcr',
'oVivtfshfcuhhe',
' eeih a uote ',
'hrnl sdtln is',
'oot ttvh tttfh',
'un bhaeepihw a',
'saglernianeoyl',
'e,ro -trsui ol',
'h uofcu sarhu ',
'owddarrdan o m',
'lhg to\'egccuwi',
'deemasdaeehris',
'sr als t ists',
',ebk \'phool\'h,',
' reldi ffd ',
'bweso tb rtpo',
'oea ileutterau',
't kcnoorhhnatr',
'hl isvuyee\'fi ',
' atv es iisfet',
'ayoior trr ino',
'l lfsoh ecti',
'ion vedpn l',
'kuehtteieadoe ',
'erwaharrar,fas',
' nekt te rh',
'ismdsehphnnosa',
'ncuse ra-tau l',
' et tormsural',
'dniuthwea\'g t ',
'iennwesnr hsts',
'g,ycoi tkrttet',
'n ,l r s\'a anr',
'i ef \'dgcgdi',
't aol eoe,v',
'y nei sl,u; e',
', .sf to l ',
' e rv d t',
' ; ie o',
' f, r ',
' e e m',
' . m e',
' o n',
' v d',
' e .',
' ,',
];
expect(transpose(input)).toEqual(expected);
});
});