Skip to content

Commit c36e53e

Browse files
committed
1 parent 83457c4 commit c36e53e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package com.jiangcoder.doubleTrie;
2+
3+
public class DANode {
4+
public int start = 0;
5+
public int end = 0;
6+
public DANode(int s, int e){
7+
start = s;
8+
end = e;
9+
}
10+
}

0 commit comments

Comments
 (0)