Meeting Rooms | GFG POTD | 12-11-24 | Medium | GFG Problem of the day | Greedy | Sorting

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 5

  • @tusharpokhriyal2957
    @tusharpokhriyal2957 12 дней назад +2

    Nice 👍 explanation

  • @anushkaojha2003
    @anushkaojha2003 12 дней назад +1

    Good going Uday!!

  • @codewithuday
    @codewithuday  12 дней назад +1

    class Solution {
    public:
    bool canAttend(vector &arr) {
    // Your Code Here
    int count = 1;
    int st = arr[0][0] , en = arr[0][1];
    for(int i=1;i