Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Blankj/awesome-java-leetcode
/ Interval
Method
Interval
src/com/blankj/structure/Interval.java:18–21 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
16
public
int
end;
17
18
public
Interval() {
19
start = 0;
20
end = 0;
21
}
22
23
public
Interval(
int
s,
int
e) {
24
start = s;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected