MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / MyCalendar

Method MyCalendar

myCalendar1.java:3–5  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1class MyCalendar {
2 TreeMap<Integer,Integer> map;
3 public MyCalendar() {
4 map = new TreeMap<>();
5 }
6
7 public boolean book(int start, int end) {
8 Integer prevVal = map.lowerKey(end);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected