2028. Find Missing Observations | maths | Leetcode Daily Challenge | dsa | java | shashcode

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 26

  • @shashwat_tiwari_st
    @shashwat_tiwari_st  2 หลายเดือนก่อน +4

    Like target for this video is 100.. please do like and subscribe😍

  • @DarkDragon-bz6qp
    @DarkDragon-bz6qp 2 หลายเดือนก่อน +1

    Great explanation

  • @SwarajRoutray
    @SwarajRoutray 6 วันที่ผ่านมา

    Good video man

  • @yashmatlani1976
    @yashmatlani1976 2 หลายเดือนก่อน

    Happy teacher's day sir
    🎉🎉
    Thanx for providing such a premium content

  • @aayushvbw
    @aayushvbw 2 หลายเดือนก่อน

    Happy teachers day to the most amazing Software Engineer whom I have been following

  • @Shaurya__Tripathi
    @Shaurya__Tripathi 2 หลายเดือนก่อน

    Happy Teacher's day Sir ❤

  • @manikantaalamanda3885
    @manikantaalamanda3885 2 หลายเดือนก่อน +1

    Happy Teachers Day My Daily Lecturer Saab..

    • @shashwat_tiwari_st
      @shashwat_tiwari_st  2 หลายเดือนก่อน

      @@manikantaalamanda3885 thankyou 😊

  • @sbmaurya09e
    @sbmaurya09e 2 หลายเดือนก่อน

    sir it is good to understand from here and then write code by myself on LC. cos im not able to do the questions by myself at this time.(im able to solve maximum of the easy questions by myself)

    • @shashwat_tiwari_st
      @shashwat_tiwari_st  2 หลายเดือนก่อน

      @@sbmaurya09e it's okay, but prepare notes of questions you are not able to solve by your own and revise them in every 15 days, it will be very helpful

  • @PiyushSharma-we8yd
    @PiyushSharma-we8yd 2 หลายเดือนก่อน

    Badhiya ❤❤

  • @mr.nishantawasthi4402
    @mr.nishantawasthi4402 2 หลายเดือนก่อน

    Happy Teachers day sir ❤

    • @shashwat_tiwari_st
      @shashwat_tiwari_st  2 หลายเดือนก่อน

      @@mr.nishantawasthi4402 thankyou 😊

  • @aadi5674
    @aadi5674 2 หลายเดือนก่อน +1

    Sir can you please review this code , is this optimized or too brute force (or should've think it in another way)
    I am unable to think of equal distribution and remainder logic
    what steps should i take in mind to solve questions to think of optimized logic you've taken
    class Solution {
    public:
    vector missingRolls(vector& arr, int mean, int n) {
    int m = arr.size();
    int sum_m = accumulate(arr.begin(), arr.end(), 0);
    int sum_n = mean * (m + n) - sum_m;
    if (sum_n < n || sum_n > 6 * n) return {};
    int tr = (mean * n) - sum_n;
    vector res(n, mean);
    if (tr == 0) return res;
    if (tr < 0) {
    for (int i = 0; i < n; i++) {
    while (res[i] < 6) {
    tr++;
    res[i] += 1;
    if (tr == 0)
    return res;
    }
    }
    } else {
    for (int i = 0; i < n; i++) {
    while (res[i] > 1) {
    tr--;
    res[i] -= 1;
    if (tr == 0)
    return res;
    }
    }
    }
    return {};
    }
    };

  • @monugit9
    @monugit9 2 หลายเดือนก่อน

    👏🏻

  • @riddhiradia5888
    @riddhiradia5888 2 หลายเดือนก่อน

    HAPPY Teahers day bhaiya 😊 bhaiya which pentab u use I want to purchase it if you can help

    • @shashwat_tiwari_st
      @shashwat_tiwari_st  2 หลายเดือนก่อน

      @@riddhiradia5888 XP Pen Deco 01 V2

    • @riddhiradia5888
      @riddhiradia5888 2 หลายเดือนก่อน

      @@shashwat_tiwari_st Thank you bhaiya your videos are very helpful

  • @shivambharti232
    @shivambharti232 2 หลายเดือนก่อน

    Happy teachers days guruji❤❤ ..i wish success ho kr aapko proud feel kraya ❤

  • @AbhishekShorts20
    @AbhishekShorts20 2 หลายเดือนก่อน

    public int[] missingRolls(int[] rolls, int mean, int n) {
    int m = rolls.length;
    int sum = mean * (n+m);
    for(int i=0;i 0)){
    return new int[0];
    }
    for(int i=0;i0){
    arr[i]++;
    r--;
    }
    }
    return arr;
    }

  • @PiyushSharma-we8yd
    @PiyushSharma-we8yd 2 หลายเดือนก่อน

    Happy teachers' Day 💓