Arranging Coins | leetcode 441 | Hindi

Sdílet
Vložit
  • čas přidán 30. 06. 2020
  • liked this video? Click here / @codebix1096 join our facebook group :- / 258049468776636
    problem :- leetcode.com/problems/arrangi....
    code :- github.com/luckykumardev/leet...

Komentáře • 14

  • @nanduksathyan7395
    @nanduksathyan7395 Před 4 lety +2

    Thanks Bro, Nice explanation. Love from Kerala

  • @kushaalrana
    @kushaalrana Před 4 lety +3

    Thanks for uploading all the approaches with codes helps to develop the thought process 👍

  • @Rits2203
    @Rits2203 Před 4 měsíci

    Amazing explanation!

  • @piyushsharma1638
    @piyushsharma1638 Před 3 lety +1

    really liked your approach of explanation.. reminded one of the mentors in school :)

    • @codebix1096
      @codebix1096  Před 3 lety

      Glad to hear that!
      Follow our linkedin page for regular updates www.linkedin.com/company/codebix/?viewAsMember=true

  • @palakkumar7943
    @palakkumar7943 Před 5 měsíci

    osm

  • @AmazingWorld-fw9oc
    @AmazingWorld-fw9oc Před 3 lety

    Sir I just wanted to point that in 2nd method the tc should be o(log k) as we should apply Bs on 0-k.

  • @sakshampaliwal1526
    @sakshampaliwal1526 Před 2 lety

    Good Explanation

  • @deveshkumar2862
    @deveshkumar2862 Před 4 lety +1

    Thank you sir.
    Sir I have a suggestion for u. When you explaining the code . Can you zoom in to the code . This might be good .

    • @deveshkumar2862
      @deveshkumar2862 Před 4 lety

      Becoz code font size is to small for us. If you zoom in this problem might be solve

    • @codebix1096
      @codebix1096  Před 4 lety +5

      Okay Devesh will do.
      Btw code is also available in video description

  • @rishavraj6861
    @rishavraj6861 Před 2 lety

    why you take (long)n in constant time

  • @amanpandey4550
    @amanpandey4550 Před rokem

    Time Complexity - O(log n)
    Code:
    class Solution {
    public:
    bool func(long long k,int n){
    return (k*(k+1)/2)