Skip to content

Commit 687af18

Browse files
committed
removed semicolons from the end of line of code to be consistent with previous submission
1 parent 8fd5748 commit 687af18

File tree

1 file changed

+57
-57
lines changed

1 file changed

+57
-57
lines changed

javascript/0572-subtree-of-another-tree.js

+57-57
Original file line numberDiff line numberDiff line change
@@ -5,93 +5,93 @@
55
* @return {boolean}
66
*/
77
var isSubtree = function (root, subRoot) {
8-
if (!root) return false;
8+
if (!root) return false
99

10-
if (isSame(root, subRoot)) return true;
10+
if (isSame(root, subRoot)) return true
1111

12-
const hasLeftTree = isSubtree(root.left, subRoot);
13-
const hasRightTree = isSubtree(root.right, subRoot);
12+
const hasLeftTree = isSubtree(root.left, subRoot)
13+
const hasRightTree = isSubtree(root.right, subRoot)
1414

15-
return hasLeftTree || hasRightTree;
15+
return hasLeftTree || hasRightTree
1616
};
1717

1818
const isSame = (root, subRoot) => {
19-
const hasReachedEnd = !(root && subRoot);
20-
if (hasReachedEnd) return root === subRoot;
19+
const hasReachedEnd = !(root && subRoot)
20+
if (hasReachedEnd) return root === subRoot
2121

2222
const isMismatch = root.val !== subRoot.val;
23-
if (isMismatch) return false;
23+
if (isMismatch) return false
2424

25-
const isLeftSame = isSame(root.left, subRoot.left);
26-
const isRightSame = isSame(root.right, subRoot.right);
25+
const isLeftSame = isSame(root.left, subRoot.left)
26+
const isRightSame = isSame(root.right, subRoot.right)
2727

28-
return isLeftSame && isRightSame;
29-
};
28+
return isLeftSame && isRightSame
29+
}
3030

3131
const hash = (val) =>
32-
require('crypto').createHash('md5').update(val).digest('hex');
32+
require('crypto').createHash('md5').update(val).digest('hex')
3333

3434
const merkle = (root) => {
35-
if (!root) return '#';
35+
if (!root) return '#'
3636

37-
const { left, val, right } = root;
37+
const { left, val, right } = root
3838

39-
const leftMerkle = merkle(left);
40-
const rightMerkle = merkle(right);
39+
const leftMerkle = merkle(left)
40+
const rightMerkle = merkle(right)
4141

42-
const merkleVal = [leftMerkle, val, rightMerkle].join('');
43-
const merkleHash = hash(merkleVal);
42+
const merkleVal = [leftMerkle, val, rightMerkle].join('')
43+
const merkleHash = hash(merkleVal)
4444

45-
root.merkle = merkleHash;
45+
root.merkle = merkleHash
4646

47-
return root.merkle;
48-
};
47+
return root.merkle
48+
}
4949

5050
const search = (root, subRoot) => {
51-
if (!root) return false;
51+
if (!root) return false
5252

53-
const hasSamePath = root.merkle === subRoot.merkle;
54-
if (hasSamePath) return true;
53+
const hasSamePath = root.merkle === subRoot.merkle
54+
if (hasSamePath) return true
5555

56-
const left = search(root.left, subRoot);
57-
const right = search(root.right, subRoot);
56+
const left = search(root.left, subRoot)
57+
const right = search(root.right, subRoot)
5858

59-
return left || right;
60-
};
59+
return left || right
60+
}
6161

6262
var isSubtree = function (root, subRoot) {
63-
[root, subRoot].forEach(merkle);
63+
[root, subRoot].forEach(merkle)
6464

65-
return search(root, subRoot);
66-
};
65+
return search(root, subRoot)
66+
}
6767

6868
const hashify = (root, hash, postOrderKey) => {
69-
if (!root) return '#';
69+
if (!root) return '#'
7070

71-
const left = hashify(root.left, hash, postOrderKey);
72-
const right = hashify(root.right, hash, postOrderKey);
71+
const left = hashify(root.left, hash, postOrderKey)
72+
const right = hashify(root.right, hash, postOrderKey)
7373

74-
const key = [left, root.val, right].join('');
74+
const key = [left, root.val, right].join('')
7575

7676
if (!hash.has(key)) {
77-
hash.set(key, postOrderKey[0]);
78-
postOrderKey[0]++;
77+
hash.set(key, postOrderKey[0])
78+
postOrderKey[0]++
7979
}
8080

81-
return hash.get(key);
82-
};
81+
return hash.get(key)
82+
}
8383

8484
var isSubtree = function (root, subRoot, hash = new Map(), postOrderKey = [0]) {
85-
hashify(root, hash, postOrderKey);
85+
hashify(root, hash, postOrderKey)
8686

8787
const hashKey = [
8888
hashify(subRoot.left, hash, postOrderKey),
8989
subRoot.val,
9090
hashify(subRoot.right, hash, postOrderKey),
91-
].join('');
91+
].join('')
9292

93-
return hash.has(hashKey);
94-
};
93+
return hash.has(hashKey)
94+
}
9595

9696
/**
9797
* Definition for a binary tree node.
@@ -109,30 +109,30 @@ var isSubtree = function (root, subRoot, hash = new Map(), postOrderKey = [0]) {
109109
*/
110110
var isSubtree = function (root, subRoot) {
111111
if (!subRoot) {
112-
return true;
112+
return true
113113
} else if (!root) {
114-
return false;
114+
return false
115115
} else if (isSameTree(root, subRoot)) {
116-
return true;
116+
return true
117117
}
118118

119-
const leftResult = isSubtree(root.left, subRoot);
120-
const rightResult = isSubtree(root.right, subRoot);
119+
const leftResult = isSubtree(root.left, subRoot)
120+
const rightResult = isSubtree(root.right, subRoot)
121121

122-
return leftResult || rightResult;
123-
};
122+
return leftResult || rightResult
123+
}
124124

125125
function isSameTree(root, subRoot) {
126126
if (!root && !subRoot) {
127-
return true;
127+
return true
128128
} else if (!root || !subRoot) {
129-
return false;
129+
return false
130130
} else if (root.val !== subRoot.val) {
131-
return false;
131+
return false
132132
}
133133

134-
const leftRes = isSameTree(root.left, subRoot.left);
135-
const rightRes = isSameTree(root.right, subRoot.right);
134+
const leftRes = isSameTree(root.left, subRoot.left)
135+
const rightRes = isSameTree(root.right, subRoot.right)
136136

137-
return leftRes && rightRes;
137+
return leftRes && rightRes
138138
}

0 commit comments

Comments
 (0)