Euclid's Algorithm for GCD - Greatest Common Divisor (Hinglish)

Update - Checkout my new video on GCD (English) along with Implementation.
• Day 5 - Euclid's Algor...
In this video we discuss the GCD concept - Euclid's Algorithm. (Hindi + English)

Пікірлер: 88

  • @CodingBlocksIndia
    @CodingBlocksIndia4 жыл бұрын

    Become a master coder with Coding Blocks' Programming Courses. Visit cb.lk/2T7WP to explore all CB courses. Use Coupon Code "KZread" to avail 25% Off on Our Courses.

  • @PurpleCJ
    @PurpleCJ3 жыл бұрын

    watch it at 1.5 x

  • @ak_murmu

    @ak_murmu

    3 жыл бұрын

    yaa, i watched it

  • @sangitabehera1212

    @sangitabehera1212

    2 жыл бұрын

    Thanks

  • @pagio14
    @pagio144 жыл бұрын

    4 minutes in and I realzie i dont know Hinglish

  • @MGtvMusic

    @MGtvMusic

    4 жыл бұрын

    hshahahahahaha

  • @felizcreations23

    @felizcreations23

    3 жыл бұрын

    Hahahaha😂

  • @cryptovlogger9142

    @cryptovlogger9142

    3 жыл бұрын

    🤣🤣same here

  • @mirmurtaza188

    @mirmurtaza188

    3 жыл бұрын

    hahahhaa

  • @atharvrameshnair8810

    @atharvrameshnair8810

    3 жыл бұрын

    Bro, this is a programming channel.

  • @techalgorithm8713
    @techalgorithm87134 жыл бұрын

    what is that software you are using??

  • @cashcow3996
    @cashcow39963 жыл бұрын

    awesome,that swapping part. was gem

  • @abhishekgawali165
    @abhishekgawali1654 жыл бұрын

    If you know gcd and bruteforce approach then go to 3:17

  • @yadhukrishnana4855
    @yadhukrishnana48553 жыл бұрын

    Any techniques other than euclid's algorithm????

  • @pratikthorat2314
    @pratikthorat23142 жыл бұрын

    Great Explanation ❤️

  • @hamzanasir1590
    @hamzanasir15904 жыл бұрын

    Best explanation ever 👍👍👍

  • @kunal_chand

    @kunal_chand

    4 жыл бұрын

    You wish !

  • @AhamedKabeer-wn1jb
    @AhamedKabeer-wn1jb3 жыл бұрын

    Thanks good explanation...

  • @shivrajshindedefence1750
    @shivrajshindedefence17503 жыл бұрын

    Sir what is hineglish meaning ???😂

  • @sourabhsharma2746
    @sourabhsharma27462 жыл бұрын

    what will the time complexity 🤔

  • @RaviRanjan0631
    @RaviRanjan06316 жыл бұрын

    Then what is complexity of this recursive Euclid's HCF method?

  • @AjeetKumar-he9lk

    @AjeetKumar-he9lk

    5 жыл бұрын

    log(min(a,b))

  • @PrateekNarang27
    @PrateekNarang274 жыл бұрын

    New Video on GCD(English) with Code - kzread.info/dash/bejne/anlly5elZsuYYsY.html - Prateek

  • @lavkushtiwari2799
    @lavkushtiwari27996 жыл бұрын

    Sir can you please make a playlist of mathematics for Competitive coding.

  • @CodingBlocksIndia

    @CodingBlocksIndia

    6 жыл бұрын

    Lavkush Tiwari it's there in competitive Programming online course by Coding Blocks. Next batch starts.in March.

  • @lavkushtiwari2799

    @lavkushtiwari2799

    6 жыл бұрын

    Sir,, I know that but the course is paid :(

  • @nands4410

    @nands4410

    6 жыл бұрын

    Coding Blocks India Are the videos you upload on KZread same as the ones in course kind Sir

  • @II_xD_II

    @II_xD_II

    4 жыл бұрын

    @@lavkushtiwari2799 love babbar is doing that on youtube go have a look bro :D

  • @siddhantsingh3392

    @siddhantsingh3392

    3 жыл бұрын

    @@nands4410 no bro! if they do then who would buy the courses.

  • @zainabcheema8133
    @zainabcheema81335 жыл бұрын

    thanks sr

  • @pradumnyarokade9935
    @pradumnyarokade99355 жыл бұрын

    How to solve g.c.d. of 3997 & 2947

  • @abhishekshankar1136

    @abhishekshankar1136

    4 жыл бұрын

    use this program int gcd(int a ,int b){ if(a>b) return gcd(b,a) # to maintain a>b else if (a==0) return b; else return gcd(b%a,a) you will get 7 as gcd , you can verify via long division method it will come 7

  • @hassaanraheem5644
    @hassaanraheem56444 жыл бұрын

    We can do the same thing with for loop by O(min(n)/2)

  • @amaankhan8436

    @amaankhan8436

    3 жыл бұрын

    not true

  • @kalpanaswami3352
    @kalpanaswami33524 жыл бұрын

    Thnx sir 🙏🤗

  • @not_vinyas_92
    @not_vinyas_923 жыл бұрын

    Thank u🙏🙏

  • @muskansalmani436
    @muskansalmani4363 жыл бұрын

    Thank you sir

  • @heenarafie4647
    @heenarafie46472 жыл бұрын

    Thank u so much sir...

  • @Fulakitele
    @Fulakitele5 жыл бұрын

    Yo! Thank you for putting this example but I don't understand sometimes what you say in between some parts. What language are you speaking?

  • @visibleman7787

    @visibleman7787

    5 жыл бұрын

    his speaking in Hindi one of (indian language).

  • @gaurav3794

    @gaurav3794

    4 жыл бұрын

    Hindi + English= hinglish language

  • @himanshujoshi3383
    @himanshujoshi33833 жыл бұрын

    Please include the proof of eculid's theorem also'

  • @mikustudy3957
    @mikustudy39575 жыл бұрын

    Thanks🙏sir

  • @CodingBlocksIndia

    @CodingBlocksIndia

    5 жыл бұрын

    Welcome Miku !!

  • @suvidsinghal1365
    @suvidsinghal13654 жыл бұрын

    is hcf the same as gcd?

  • @abhishekverma2568

    @abhishekverma2568

    4 жыл бұрын

    yes

  • @apurbakumarmajumder9478
    @apurbakumarmajumder94782 жыл бұрын

    how to divide 2 numbers by one number like 15 & 10 by 5 ((15&10) % 5==0) can anyone help me with this question.

  • @ameedfaridi2739

    @ameedfaridi2739

    2 жыл бұрын

    15%5==0 && 10%5==0

  • @knowledgehubbyumarfarooq6533
    @knowledgehubbyumarfarooq65335 жыл бұрын

    Great job

  • @CodingBlocksIndia

    @CodingBlocksIndia

    5 жыл бұрын

    Thanks !! . Do like, share and subscribe

  • @chinmayvaishampayan7133
    @chinmayvaishampayan71334 жыл бұрын

    😀

  • @Learn_Automation_Testing
    @Learn_Automation_Testing4 жыл бұрын

    prateek narang

  • @HDitzzDH
    @HDitzzDH4 жыл бұрын

    How is 10/14 equal to 10?

  • @km-xe8hj

    @km-xe8hj

    4 жыл бұрын

    Dude use your brain 😂

  • @HDitzzDH

    @HDitzzDH

    4 жыл бұрын

    @@km-xe8hj I did, he simplified gcd(14, 10/14) at 4:35 to gcd(14,10) which clearly isn't true.

  • @gxnzskilz956

    @gxnzskilz956

    4 жыл бұрын

    it is % ,not /

  • @HDitzzDH

    @HDitzzDH

    4 жыл бұрын

    @@gxnzskilz956 I was just wondering that, when he writes "10%5 = 0" what does % mean? Clearly it's not division and I couldn't make out what he was saying.

  • @venkatachalachala2350

    @venkatachalachala2350

    4 жыл бұрын

    C ... when numerator is small than d denomination/divider ..den tad ll be d ans...for ex: 2(mod 4)=2 10(mod 14)=10

  • @Lordvenomdeadd
    @Lordvenomdeadd4 жыл бұрын

    Good👍👍👍

  • @dheerajramchandani834
    @dheerajramchandani834 Жыл бұрын

    where is the proof of Euclid algorithm.

  • @kumarsuman9186
    @kumarsuman91863 жыл бұрын

    I am just 10 and I am learning coding actually my brother Triggered insaan or nishchay bhaia said me when you will complete the final exam of 4 I will start teaching youcoding

  • @justinmyth4980

    @justinmyth4980

    3 жыл бұрын

    We dont trust you give his number

  • @shubhampal2971
    @shubhampal29715 ай бұрын

    why there is annoying background noise in your video

  • @sushruthauk9676
    @sushruthauk96762 жыл бұрын

    In title check the mistake and change it.

  • @thetrainoflife8327
    @thetrainoflife83274 жыл бұрын

    bro you should have given proof too .....

  • @subscribeinsteadlike2768
    @subscribeinsteadlike27683 жыл бұрын

    i was watching at x1.5 and i thought it was normal

  • @mgalitratonafeelingfilm
    @mgalitratonafeelingfilm3 жыл бұрын

    me who thought he will code it

  • @PavanKalyan-tg1zn
    @PavanKalyan-tg1zn2 жыл бұрын

    I thought the video was buffering, by the way you mute yourself just after talking :)

  • @Angryman18
    @Angryman184 жыл бұрын

    4:35 so 14%10 is again 10..wow

  • @pertisthsingh

    @pertisthsingh

    4 жыл бұрын

    Its 10%14 == 10.

  • @shivpatel8288
    @shivpatel82883 жыл бұрын

    where the fuck is the proof? Like bro, that is important!

  • @hrandroid7021
    @hrandroid70213 жыл бұрын

    hinglish is sexcy title

  • @jaisharma413
    @jaisharma4134 жыл бұрын

    u should try some simple language to teach....thik...

  • @aayushpradhan5120
    @aayushpradhan51203 жыл бұрын

    Hinglish boleto???????/???????/?///

  • @vimalsolanki870

    @vimalsolanki870

    Жыл бұрын

    Hindi+English

  • @ss-eu6uu
    @ss-eu6uu5 жыл бұрын

    bhai khana kha liya kar energy=4%2

  • @prabhatkashyap8333

    @prabhatkashyap8333

    4 жыл бұрын

    hahahahahahaha,

  • @harxsh09
    @harxsh09 Жыл бұрын

    bhai is se ganda mene aaj tak nhi pada....ratta only

  • @sergio7470
    @sergio74704 жыл бұрын

    wtf is Hinglish lol

  • @ShubhamKumar-sq2pg

    @ShubhamKumar-sq2pg

    4 жыл бұрын

    Hindi(an indian language) + English, not a language but a popular lingo in india.

  • @apoorvkala6381
    @apoorvkala63812 жыл бұрын

    Bakwass

  • @shashankojha3452
    @shashankojha34523 жыл бұрын

    Khud padh ke aao pehle