Thanks you for your clear step-by-step explanation on Euclidean algorithm using small case, 64 & 48. I could understand "why 'a' should be returned " clearly and the recursive function a little bit more. I have subscribed!! I hope you and your beloved ones staying healthy and happy.
@AmulsAcademy4 жыл бұрын
Thank you so much :) Stay happy Stay Healthy :)
@kwekoweprince50775 жыл бұрын
You are AMAZING!!! You explained it perfectly!!!!! I subscribed
@AmulsAcademy5 жыл бұрын
Thank you :)
@mamagrace62084 жыл бұрын
subscribed as well.
@debojitmandal86703 жыл бұрын
@@AmulsAcademy mam I don't understand the explanation bcs when you used return why only a is getting printed i.e only if condition is getting printed and not the else condition
@rorydaines31763 жыл бұрын
@@AmulsAcademy You are seriously amazing, thank you for this.
@kacpermokrzycki21443 жыл бұрын
as a curiosity you can also write def GCD(a,b): return a if b==0 else GCD(b,a%b) if anyone is obsessed with shortcode :))
@AmulsAcademy3 жыл бұрын
True :)
@kellymirandalobo93532 жыл бұрын
i really like the way you explain coding!! so clear and to the point! really thanks for the vid!
@infinitygaming71923 жыл бұрын
Easy method Def(num1,num2) Lis = [] For i in range (1,num1): If num1 % i ==0 and num2 % i ==0: Lis.append(i) Return lis[-1]
@YouHaveToLoveMe4 ай бұрын
zero division error
@tlbb12165 жыл бұрын
Your channel is fantastic! There's no word to describe my gratitude to you
@AmulsAcademy5 жыл бұрын
Thank you :)
@thetech6853 жыл бұрын
very good videos. i am a beginner coder and your tutorials really helped me out!!
@AmulsAcademy3 жыл бұрын
Glad to hear that 😊
@gonitbuzz3 жыл бұрын
Amazing tutorial. Take love from Bangladesh 🇧🇩
@AmulsAcademy3 жыл бұрын
Thank you 😊
@abductingfear10983 жыл бұрын
Wow that was me who completed 1k likes on this video Btw you deserve much more than that. Really loved it ❤
@AmulsAcademy3 жыл бұрын
Thank you so much :)
@subhashpurushothaman38315 жыл бұрын
Wow...what's that...Your voice is so cute...Of course you explained it perfectly...your voice added more flavor to your explanation skill.......
@AmulsAcademy5 жыл бұрын
Thank you :)
@maelonheplorn88933 жыл бұрын
ngl this comment is creepy as hell
@jaguargaming1410 Жыл бұрын
I understood it very well, every step was explained in detailed manner .
@TheMasterswordish4 жыл бұрын
Thanks Amul, this helped me enormously.
@AmulsAcademy4 жыл бұрын
Glad to hear that!
@balambhavanisankar19244 жыл бұрын
I just addicted to ur voice
@AmulsAcademy4 жыл бұрын
Thank you :)
@KamalSanjay-3 жыл бұрын
There is no words to describe ur explanation, u r excellent sister☺️
@saurabhsinghdhami11665 жыл бұрын
Amazing explanation!!!! And beautiful voice:)
@AmulsAcademy5 жыл бұрын
Thank you :)
@jathebest28352 жыл бұрын
That was a great explanation..👏 Thank you from Korea!
@NeerajSingh-hu9ut3 жыл бұрын
Thanks for the simple and pre-concept explanation. Thanks again !
@pavithraraji71754 жыл бұрын
The way you explained is awesome 🤩🙌
@AmulsAcademy4 жыл бұрын
Thank you so much 😀
@singisbling25004 жыл бұрын
Great😊 explanation ❤ for your lovely voice 🤗🙏
@AmulsAcademy4 жыл бұрын
Thanks a lot 😊
@adityan53023 жыл бұрын
Hat's-Off Ma'am, Amazing!! Will remember for life time
@TheDominock4 жыл бұрын
I had a terrible stop at this point. Thank you very much.
@AmulsAcademy4 жыл бұрын
Welcome :)
@SubhaShini-zd2wt Жыл бұрын
Guys a simple program which you can try for GCD a=int(input ("enter greater no")) b=int(input ("enter smaller no")) while r>0: r=a%b a=b b=r print (a)
@niloyrahman33444 жыл бұрын
great...greater...greatest....programmer...I have ever seen ..take love from me.
@AmulsAcademy4 жыл бұрын
Thank you :)
@anthonyfes3 жыл бұрын
Great explanation Mam!
@AmulsAcademy3 жыл бұрын
Thank you 😊
@bikramjitmondal82395 жыл бұрын
You got a new subscriber. Great explanation
@AmulsAcademy5 жыл бұрын
Thank you :)
@happydudhe3833 жыл бұрын
It is a best channel to learn python 🥰
@pectenmaximus2314 жыл бұрын
Absolutely amazing explanation. So clear. Thanks very much.
@AmulsAcademy4 жыл бұрын
Glad it was helpful!
@ArunKumar-il7hv Жыл бұрын
Thanks mam your explanation was top notch
@gokceozkonuk93003 жыл бұрын
Thank you very much again for your detailed explaination!
@AmulsAcademy3 жыл бұрын
Pleasure ❤️
@marutikalyan63663 жыл бұрын
Perfect explanation I subscribed ❤️
@AmulsAcademy3 жыл бұрын
Thank you 😊
@youarethecssformyhtml2 жыл бұрын
The easiest method is to divide the greatest number by the second one and then divide the greatest number by numerator of the result. Don't ask me how but it actually works and so efficient 😀
@kanishkakaushik18683 жыл бұрын
Thanks amulya .
@AmulsAcademy3 жыл бұрын
Pleasure :)
@C.J.JOSEPH5 жыл бұрын
Ur video contained so much explanation thank u 😘💕
@AmulsAcademy5 жыл бұрын
Thank you :)
@deadpool44223 жыл бұрын
Ma'am when i wrote >>> math.gcd(64,48) , you tell it will come 16 but in mines it is 1, can you tell the problem???
@vikashvinod39363 жыл бұрын
Mam , how did it run multiple times in function call?
@haritika966 жыл бұрын
Ma'am mine method for calculating GCD/HCF is correct or not ? Num1 = int(input("Enter the first number : ")) Num2 = int(input("Enter the second number : ")) factors = [] for fact in range(Num1,0,-1): if Num1 % fact == 0 and Num2 % fact == 0: factors.append(fact) print("HCF of ",Num1,"and",Num2,"is : {}".format(max(factors)))
@AmulsAcademy6 жыл бұрын
Yes it will work :) But you didn't check for the smallest input,. when you enter the first value as bigger value, for loop will execute more times than required . The H.C.F can only be less than or equal to the smallest number, so no need to check till bigger number. :)
@Akash-lp1kc5 жыл бұрын
Nice work..
@AmulsAcademy5 жыл бұрын
Thank you :)
@p.lakshmisairam72202 жыл бұрын
ur explanation before writing code is awesome ....is there any paid course of yours i would like to join ...thank you madam
@dharshinimagesh95915 жыл бұрын
mam ,pl explain this hi mam , i understand this program but according to the if "loop" it should get the values " 2,3 or 4" as GCD coz it divides 48,36 equally how it gets 12 as GCD . n1 = 48 n2 = 36 #find smaller if(n1>n2): smaller = n2 else: smaller = n1 #getting hcf i = 1 while(i
@AmulsAcademy5 жыл бұрын
greatest common divisor of 48 and 36 is 12. common divisor of 48 and 36 is 1 2 3 4 6 12 In this greatest is 12 so GCD is 12. In the program while loop will run until i
@dharshinimagesh95915 жыл бұрын
@@AmulsAcademy oh ok . i got it now 😃. thank u very much mam .
@pradumnyarokade99355 жыл бұрын
Ma'am how 2 find Gcd of big no. As like 3997 & 2947
@AmulsAcademy5 жыл бұрын
I think you are asking manually how to find out the gcd of bigger numbers. There are some mathematical shortcuts you need search that, you can google it. :)
@satyamsinha15594 жыл бұрын
Uff.. tmhara voice ♥️👌 ..nice explanation though.. very helpful
@AmulsAcademy4 жыл бұрын
Thanks a lot 😊
@sahukarisidhivinayaka20933 жыл бұрын
Mam in first case i.e 4%18 you got 4. Can you please explain how did you get that?
@somyachawla54223 жыл бұрын
What if we remove return statement from ComputeGCD
@AmulsAcademy3 жыл бұрын
Try :)
@zeeshanhussain72134 жыл бұрын
Ma'am, You're awesome, Thanks for the video...
@AmulsAcademy4 жыл бұрын
My pleasure 😊
@zeeshanhussain72134 жыл бұрын
Amulya's Academy 🥰😘
@digiviewacademy63893 жыл бұрын
Graet Video.very simple and clear expanation thank you very much
@thuantranvan31644 жыл бұрын
If a and b are complex numbers, how can I find gcd. Please help me
@vinuk5404 жыл бұрын
nice and clear explanation,thank you
@AmulsAcademy4 жыл бұрын
Thank you :)
@jyoti34272 жыл бұрын
Mam thankyou so much for your nice explanation 🙏
@moments_with_frds3 жыл бұрын
Good explanation 👍👍
@ambadaschankhore27144 жыл бұрын
it's fantastic way to define exact mean of math & Programming concepts ....Really Good for your knowledge & teaching terms.
@AmulsAcademy4 жыл бұрын
Thank you :)
@hashikooshing74114 жыл бұрын
simply amazing individual.....
@AmulsAcademy4 жыл бұрын
Thank you :)
@linkmageful6 жыл бұрын
is this the recursive form?
@AmulsAcademy6 жыл бұрын
Yes:)
@komaljaswani74975 жыл бұрын
Hi! Can you please make a video on the question: If a list in python has mix of strings & numbers, how will you make separate lists of strings & numbers? I saw ord() for getting ASCII code in python & chr() for converting ASCII codes to characters somewhere & tried to use them to get answer of this question but it did not work!! :(
@HarshitaChattopadhyay4 жыл бұрын
Mam can u pls do LCM of 2 numbers programs pls...
@vijayjakune74093 жыл бұрын
NICE VOICE GREAT EXPLAINATION KEEP IT UP :)
@AmulsAcademy3 жыл бұрын
Thank you :)
@C.J.JOSEPH5 жыл бұрын
And what is the algorithm for this gcd program, can u please tell me.
@AmulsAcademy5 жыл бұрын
Euclid's algorithm :)
@HieuNguyen-zj5so4 жыл бұрын
Great explain ... Thank you so much
@AmulsAcademy4 жыл бұрын
You are welcome! : )
@latestupdates68362 жыл бұрын
super explained in very simpleway
@manikandand25414 жыл бұрын
mam do u have any udemy course ....if soo plz share the link.....
@AmulsAcademy4 жыл бұрын
No :)
@manikandand25414 жыл бұрын
@@AmulsAcademy hoo its ok
@SatendraYadav-cs1yh4 жыл бұрын
Excellent explain
@AmulsAcademy4 жыл бұрын
Glad it was helpful!
@saqulainkhan67173 жыл бұрын
Really great.Thank you🙏🙏
@AmulsAcademy3 жыл бұрын
Pleasure 😊
@mamagrace62084 жыл бұрын
Thanks for explaining it so cleary
@AmulsAcademy4 жыл бұрын
You're welcome! :)
@csathishsagar5162 жыл бұрын
Sister mi voice tone👌 and good explanation
@charangummadi68633 жыл бұрын
❤️👍👍 well explanation
@AmulsAcademy3 жыл бұрын
Thank you 😊❤️
@shotokproductions91626 жыл бұрын
Hi Amulya how to develop logics like this and did each program logic needs base and recursive cases
@linkmageful6 жыл бұрын
is that the recursive code?
@AmulsAcademy6 жыл бұрын
No you can write program without recursion also(iterative approach). But for some problems using recursion is best choice because of its simplicity. There are many articles on "how to think recursively in python". You can refer that. :)
@AmulsAcademy6 жыл бұрын
Yes:) @linkmageful
@shotokproductions91626 жыл бұрын
will it possible to have all your code in mail?
@astrovishwalingam72994 жыл бұрын
Your voice is so cute thanks for you
@praneethaluru26015 жыл бұрын
list1=[] list2=[] for i in range(2,n1): if n1%i==0: print(i, end=',') list1.append(i) print(" ") for j in range(2,n2): if n2%j==0: print(j, end=',') list2.append(j) list3=[] for i in list1: for j in list2: if i==j: list3.append(i) print("HCF is",max(list3)) Is this ok?
WOW, you are so good, Thank You so much for your help.
@MDSHAHABUDDIN-ep4rc3 жыл бұрын
Thanks a lot mam!!
@AmulsAcademy3 жыл бұрын
Pleasure 😊
@streetnoober4011 Жыл бұрын
Crystal clear....🔮
@sajankumar-ly1tm5 жыл бұрын
you are explain perfect ...!!!!!!
@AmulsAcademy5 жыл бұрын
Thank you :)
@fardoushemal26224 жыл бұрын
I need your video about LCM
@AmulsAcademy4 жыл бұрын
Noted :)
@ramithap37102 жыл бұрын
import math a = math.lcm(n1,n2) print(a)
@srikanthchittampally33985 жыл бұрын
How the program runs without using loop
@manoj72073 жыл бұрын
Thankyou so much
@AmulsAcademy3 жыл бұрын
Pleasure :)
@eswarisangeetha37306 жыл бұрын
Give a detail information about merge sort sister
@AmulsAcademy6 жыл бұрын
Sure:)
@eswarisangeetha37306 жыл бұрын
Thq sis
@hrithikaraju4 жыл бұрын
Great, thanks😇
@AmulsAcademy4 жыл бұрын
You're welcome 😊
@kskbasha5513 жыл бұрын
Greatest common divisor in the sense greatest common factor right ?
@ramkuncha33806 жыл бұрын
if I take 3 values . it will execute or not.your explanation is super. sister I will give input in string and I want output into numbers .you will execute this programme
@pradeepchauhan91846 жыл бұрын
Good teaching....
@AmulsAcademy6 жыл бұрын
for three values you need to use reduce, import functools def gcd(a,b): if(b==0): return a else: return gcd(b,a%b) a=int(input("Enter first number:")) b=int(input("Enter second number:")) c=int(input(":")) GCD=functools.reduce(gcd,(a,b,c)) print("GCD is: ") print(GCD) :)
@AmulsAcademy6 жыл бұрын
Thank you:)
@jaseerhussain29774 жыл бұрын
good mam and example more porgramm
@AmulsAcademy4 жыл бұрын
Thank you :)
@ambujkhanduri56725 жыл бұрын
How to make a program to find the LCM And how to make a program to find the second lowest numbers from given n numbers.
@SumitKumar-ti4yf5 жыл бұрын
Why it is not necessary to mention a>b....How a%b works in this program even when a
@AmulsAcademy5 жыл бұрын
when i take a= 4 b = 18 then here we can see a here we can see value is interchanged. first value becomes 18 and second value becomes 4, then it will execute the function. so no need to check whether a is greater then b or not :)
@srisrisridher35972 жыл бұрын
Super mam ❤️
@AarthifTechBuild6 жыл бұрын
Hello Amulus,Thank You for the video you did on GCD I will always recommend you to my friend for your wonderful teaching And amulus just a small request apart from the GCD programme you did can u also do a video on Conversion from Hexadecimal to decimal it's a bottom hearted request pls do it for me
@AmulsAcademy6 жыл бұрын
Sure:)
@AarthifTechBuild6 жыл бұрын
Amuls Academy Amulus when can u do this video for me
@AmulsAcademy6 жыл бұрын
Next week:)
@WeShallOvercome5 жыл бұрын
thanks
@AmulsAcademy5 жыл бұрын
Welcome :)
@sahithibhimavarapu51034 жыл бұрын
We didn't get output for this program
@karanpreetsinghsekhon80765 жыл бұрын
Great but I have do this with list so how I do that
@davlatbekkobiljonov9112 жыл бұрын
Thank you!!
@kvnagendra53545 жыл бұрын
*I don't know ur name but tq yaar 💝💝*
@AmulsAcademy5 жыл бұрын
Pleasure :) My name is Amulya.
@pradumnyarokade99355 жыл бұрын
Ma'am Is there another method to find 'x'
@turjobormon86984 жыл бұрын
Yes. You can use for or while loop.
@collinsnwanze85022 жыл бұрын
Thank you
@infinitygaming71923 жыл бұрын
I have a easy method we can do like this we put statemnt if num1%i ==0 and num2%i ==0 Then we will set range to (0,smallernum) And add this to a new list and last number will always be largest number so we will return lis[-1]
@roddaganesh17293 жыл бұрын
def gcd(n,m): if m==0: return n elif n==0: return m else: return(gcd(m,n%m)) n=int(input()) m=int(input()) k=gcd(n,m) print(k) i think this is the correct code