We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2cd0a65 + bf67068 commit 19daa60Copy full SHA for 19daa60
jest.config.js
@@ -21,6 +21,7 @@ const jestConfig = {
21
collectCoverageFrom: [
22
'src/**/*.{js,jsx,ts}',
23
'!src/**/*.tsx',
24
+ '!**/lib/*.{js,jsx,ts}',
25
'!**/?(*.)+(bruteforce-test).js?(x)'
26
],
27
src/hackerrank/lib/Node.js
@@ -0,0 +1,17 @@
1
+/* istanbul ignore file */
2
+
3
+export class Node {
4
+ left;
5
6
+ right;
7
8
+ data;
9
10
+ constructor(data) {
11
+ this.left = null;
12
+ this.right = null;
13
+ this.data = data;
14
+ }
15
+}
16
17
+export default { Node };
0 commit comments