1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -58,7 +58,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"835.2K\", \"totalSubmission\": \"1.6M\", \"totalAcceptedRaw\": 835183, \"totalSubmissionRaw\": 1641047, \"acRate\": \"50.9%\"}",
"stats": "{\"totalAccepted\": \"835.2K\", \"totalSubmission\": \"1.6M\", \"totalAcceptedRaw\": 835229, \"totalSubmissionRaw\": 1641135, \"acRate\": \"50.9%\"}",
"hints": [
"Think about how we would approach this problem in a very simplistic way. We will allocate rooms to meetings that occur earlier in the day v/s the ones that occur later on, right?",
"If you've figured out that we have to <b>sort</b> the meetings by their start time, the next thing to think about is how do we do the allocation? <br>There are two scenarios possible here for any meeting. Either there is no meeting room available and a new one has to be allocated, or a meeting room has freed up and this meeting can take place there.",