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.
1 parent 9e1ad63 commit 3091442Copy full SHA for 3091442
src/hackerrank/lib/BigIntMath.js
@@ -1,6 +1,6 @@
1
/* istanbul ignore file */
2
3
-export class BigIntMath {
+class BigIntMath {
4
static max(...values) {
5
if (values.length === 0) {
6
return null;
@@ -79,3 +79,4 @@ export class BigIntMath {
79
}
80
81
export default { BigIntMath };
82
+export { BigIntMath };
src/hackerrank/lib/Node.js
-export class Node {
+class Node {
left;
right;
@@ -15,3 +15,4 @@ export class Node {
15
16
17
export default { Node };
18
+export { Node };
0 commit comments