1
00:00:01,990 --> 00:00:02,710
Hello everyone.

2
00:00:02,710 --> 00:00:07,180
So in the last five year deals we learned about this object oriented programming but it's a different

3
00:00:07,180 --> 00:00:07,810
concept.

4
00:00:07,990 --> 00:00:11,860
How to create object what our construct built and how to use them.

5
00:00:11,860 --> 00:00:14,820
So we have learned a lot of things in object oriented programming.

6
00:00:14,830 --> 00:00:19,810
So now let us create a class with the help of everything that we have learned till now to gain confidence

7
00:00:19,870 --> 00:00:21,780
and to make things more clear.

8
00:00:21,790 --> 00:00:22,170
Okay.

9
00:00:22,270 --> 00:00:24,320
So let us create a friction class.

10
00:00:24,550 --> 00:00:25,540
So in Matt

11
00:00:28,260 --> 00:00:32,510
in maths the example of affection is like five by seven.

12
00:00:32,810 --> 00:00:39,500
Five is the numerator and seven is the dominator that circle represent these type of numbers.

13
00:00:39,500 --> 00:00:43,600
And to perform operation on these type of numbers we want to create a fraction class.

14
00:00:44,300 --> 00:00:49,720
Okay so infection class we will have two properties numerator and denominator.

15
00:00:49,730 --> 00:00:52,220
These two will be the properties of our friction class.

16
00:00:52,340 --> 00:00:54,130
And both the properties will be private.

17
00:00:54,890 --> 00:00:55,580
Okay.

18
00:00:55,700 --> 00:00:56,970
What the properties will be private.

19
00:00:57,170 --> 00:01:01,720
So 5 is the numerator and seven is the denominator.

20
00:01:02,240 --> 00:01:02,590
Okay.

21
00:01:02,660 --> 00:01:05,550
So let's see in gold.

22
00:01:05,660 --> 00:01:07,430
So here I am creating only one class.

23
00:01:07,490 --> 00:01:12,560
If you want what you can do is you can create a class action lawsuit BP sorry you can create a file

24
00:01:12,560 --> 00:01:18,260
function or TPP and other file fraction use Nazi BP but I am creating only one file.

25
00:01:18,440 --> 00:01:20,400
Okay so it's totally our choice.

26
00:01:21,080 --> 00:01:22,070
So class friction

27
00:01:27,870 --> 00:01:32,310
now we want to properties what the properties will be private.

28
00:01:32,310 --> 00:01:33,840
So and numerator

29
00:01:38,480 --> 00:01:45,490
and denominator.

30
00:01:45,510 --> 00:01:46,710
Now what I want to do is

31
00:01:54,360 --> 00:01:59,370
now what I want to do is whenever we create the object of this class whenever you create the object

32
00:02:00,060 --> 00:02:05,650
of friction class numerator and denominator should not contain God which values.

33
00:02:06,000 --> 00:02:09,560
Okay numerator and denominator should not contain garbage values.

34
00:02:09,600 --> 00:02:11,000
So how can we ensure that.

35
00:02:11,010 --> 00:02:14,980
How can we enforce our user to give the values of numerator and denominator.

36
00:02:15,030 --> 00:02:16,660
So the idea is very simple.

37
00:02:16,830 --> 00:02:22,620
We will we will make a better met based constructor and as soon as we make a parameters constructor

38
00:02:22,650 --> 00:02:24,780
default constructor is not visible to us anymore.

39
00:02:25,020 --> 00:02:29,400
So in this way we can force our user to give the values of numerator and denominator.

40
00:02:29,400 --> 00:02:38,820
Okay so let's create a better make based function it will take numerator and denominator as input and

41
00:02:38,820 --> 00:02:47,860
then we will copy the value of numerator and denominator into our properties so numerator close numerator

42
00:02:50,030 --> 00:02:57,880
and denominator it goes denominator so in this fashion we will force our user to give the values of

43
00:02:57,880 --> 00:02:59,010
numerator and denominator.

44
00:02:59,140 --> 00:03:04,510
Hence if the user wants to create our objective function class numerator and denominator will never

45
00:03:04,510 --> 00:03:06,040
contain garbage values.

46
00:03:06,040 --> 00:03:06,490
Okay.

47
00:03:06,640 --> 00:03:08,300
So are these two lines correct.

48
00:03:08,350 --> 00:03:09,580
Will these two lines work.

49
00:03:10,450 --> 00:03:12,060
No this will not work.

50
00:03:12,190 --> 00:03:15,180
And why will not work because the property name is a mess.

51
00:03:15,220 --> 00:03:19,120
Function name the property name is a mess parameter name.

52
00:03:19,120 --> 00:03:21,010
So we have to use this keyword.

53
00:03:21,040 --> 00:03:24,450
Using this is mandatory here.

54
00:03:24,480 --> 00:03:24,910
Okay.

55
00:03:25,030 --> 00:03:29,480
So now how do we create the object of defection class.

56
00:03:30,490 --> 00:03:32,890
So we will create object in this section.

57
00:03:32,890 --> 00:03:35,680
Fraction let's call it F1.

58
00:03:36,010 --> 00:03:39,390
So the numerator is spent and there the other night is 5.

59
00:03:39,430 --> 00:03:43,180
So the numerator will contain 10 denominator will contain two

60
00:03:46,280 --> 00:03:49,480
and this is our function F1 okay.

61
00:03:49,560 --> 00:03:52,810
Now let us create a print function.

62
00:03:53,100 --> 00:03:54,520
So what does print function will do.

63
00:03:54,540 --> 00:03:59,720
It will print our affection in this manner then followed slash too.

64
00:04:01,320 --> 00:04:07,320
Okay so what do the signature of brain function what was written by between 5 will be void because we

65
00:04:07,320 --> 00:04:09,140
are not returning anything.

66
00:04:09,170 --> 00:04:13,160
Print and then some called.

67
00:04:13,340 --> 00:04:13,620
Okay.

68
00:04:13,640 --> 00:04:17,630
And how we will call this function will call this function with the help of an object.

69
00:04:18,020 --> 00:04:25,970
So if one dot print the value of f1 F1 will be stored in the this keyword of the brain function with

70
00:04:25,970 --> 00:04:30,140
the help of this we can access the properties of F1.

71
00:04:34,210 --> 00:04:41,270
So private function of public or private it will be public because the race object cannot call it certain

72
00:04:41,380 --> 00:04:44,650
type is void because we are not pretending anything.

73
00:04:44,800 --> 00:04:51,710
No input argument no object which will call the print function the object will be stored in this.

74
00:04:51,890 --> 00:04:52,720
So see out

75
00:04:55,510 --> 00:05:04,500
this ad or numerator then forward slash and this ETL denominator.

76
00:05:05,110 --> 00:05:13,750
Okay so using this is optional here if you will not write this Okay so using this is optional here we

77
00:05:13,750 --> 00:05:15,190
can also remove it.

78
00:05:15,210 --> 00:05:20,560
Here so whenever the object will call the print function F1 not print the value of f1 will be stored

79
00:05:20,560 --> 00:05:27,480
in this and with the help of this we can access the properties of the object Okay now let us create

80
00:05:27,480 --> 00:05:35,280
one more function we want to create a function and we want to create a function that lets say we have

81
00:05:35,280 --> 00:05:36,710
to function.

82
00:05:36,980 --> 00:05:39,700
It will create a function that lets say we have to friction.

83
00:05:39,790 --> 00:05:48,060
If when the value of a fund let's say 10 by to an infection F2 which is like 15 by food okay.

84
00:05:48,140 --> 00:05:51,670
So what are the second nature of add a function.

85
00:05:51,720 --> 00:05:55,780
So Ed f1 f2 it will take to function as input.

86
00:05:55,800 --> 00:05:59,200
Is this right or wrong it is wrong.

87
00:05:59,320 --> 00:05:59,910
Why.

88
00:05:59,970 --> 00:06:02,580
Because to call a function we need an object.

89
00:06:02,850 --> 00:06:04,870
Okay to call a function we need an object.

90
00:06:05,190 --> 00:06:10,250
So F1 will call object will call this function.

91
00:06:10,240 --> 00:06:18,190
So what what will be the input parameter the vertically the argument for that function since F1 calls

92
00:06:18,310 --> 00:06:23,100
the ad that this give out of the added function will store F1.

93
00:06:23,380 --> 00:06:29,530
And now we won't have to solve the root pass after his input so it will take only one argument and not

94
00:06:29,530 --> 00:06:30,240
two.

95
00:06:30,870 --> 00:06:31,260
Okay.

96
00:06:31,330 --> 00:06:39,480
Vinod to argument because F1 is stored in this key word of the ad function and we will pass F2 and similarly

97
00:06:39,570 --> 00:06:43,060
it can perform its operation okay.

98
00:06:43,150 --> 00:06:45,940
So what is our expectation what is our aim.

99
00:06:45,940 --> 00:06:55,600
Our aim is we want to update the result of F1 plus F2 into F1 we will add these two friction f1 plus

100
00:06:55,600 --> 00:07:02,290
F2 and we'll store the result in F1 we will update F1 and F2 will remain unchanged and we do not want

101
00:07:02,290 --> 00:07:03,590
to create any new friction.

102
00:07:03,610 --> 00:07:05,660
So the return type will be void.

103
00:07:05,890 --> 00:07:11,830
We do not want to create any new friction the Dalton type will be void and we want to update F1 and

104
00:07:11,830 --> 00:07:14,040
have to will remain unchanged.

105
00:07:14,080 --> 00:07:15,660
Now how to add two functions.

106
00:07:15,670 --> 00:07:18,360
What is the procedure for adding two functions.

107
00:07:18,370 --> 00:07:20,020
So the procedure is very simple.

108
00:07:20,110 --> 00:07:23,400
Let's say the two factions are then by two.

109
00:07:23,560 --> 00:07:28,030
And the second function is 15 by four then by two and 15 by four.

110
00:07:28,330 --> 00:07:31,430
So first of all we will take a team and Sam is four.

111
00:07:31,570 --> 00:07:36,760
But now for simplicity let's make a date for simplicity let's make a date.

112
00:07:36,940 --> 00:07:37,180
Okay.

113
00:07:37,180 --> 00:07:41,650
So here it is not clearly visible.

114
00:07:41,650 --> 00:07:44,040
So let's say the two factions are F1 and have two.

115
00:07:44,080 --> 00:07:50,780
So F1 is then by two and F2 is 15 by four.

116
00:07:50,780 --> 00:07:52,390
So how can we are two functions.

117
00:07:52,400 --> 00:07:57,770
So first of all we have to take the Elysium of the denominator so that she moves forward but for simplicity

118
00:07:57,800 --> 00:08:00,340
let's make a date.

119
00:08:00,400 --> 00:08:02,460
So what will happen to the numerator.

120
00:08:02,560 --> 00:08:05,590
So this 10 will guard multiply it by four.

121
00:08:05,590 --> 00:08:10,480
How four because eight by two is four.

122
00:08:10,480 --> 00:08:18,640
Similarly this 15 will get multiplied by two and from where to game it is simply eight by four is to

123
00:08:19,900 --> 00:08:21,420
so into two.

124
00:08:21,720 --> 00:08:24,940
So a 40 plus 30 by eight.

125
00:08:24,940 --> 00:08:27,580
So our dessert should be 70 by eight okay.

126
00:08:27,850 --> 00:08:33,730
So for now let's call it X and let's call it Y Okay.

127
00:08:33,830 --> 00:08:44,930
So what is x x is simply the LTM divided by the denominator and what is y y is and it's him divided

128
00:08:44,930 --> 00:08:47,650
by the number trough F2.

129
00:08:47,940 --> 00:08:54,800
And where does Elysium Sam is denominator of f1 plus.

130
00:08:54,790 --> 00:09:03,100
So how do you multiply the merit of F2 the amount of F1 multiplied denominator of F2.

131
00:09:03,230 --> 00:09:04,320
Okay so let's include

132
00:09:09,790 --> 00:09:13,420
so we want to create and function and add function will be public or private.

133
00:09:13,440 --> 00:09:19,900
It will be public because we will call it from the mean but it will take it will take function as input

134
00:09:21,180 --> 00:09:24,570
faction F to its name it F2.

135
00:09:24,670 --> 00:09:27,480
So first of all we have to calculate Elysium.

136
00:09:27,640 --> 00:09:31,670
So Elysium is very simple Bernard Madoff.

137
00:09:31,690 --> 00:09:37,500
If one multiply the amount of F2 so F2 dart denominator

138
00:09:44,670 --> 00:09:47,210
so using this is optional here why optional.

139
00:09:49,690 --> 00:09:57,330
Because who will call add an object will call and F when will call add and F1 will be stored in this.

140
00:09:57,370 --> 00:09:59,200
So this simply means F1 here.

141
00:09:59,230 --> 00:10:02,590
So using this is optional here you can also remove this.

142
00:10:02,600 --> 00:10:07,680
OK so Will this Terminator and basically means this added denominator.

143
00:10:07,840 --> 00:10:10,570
OK now let us consider the value of x and y

144
00:10:13,430 --> 00:10:22,020
so X is very simple axiom divided by denominator of F1 so a denominator you can write this entertainment

145
00:10:22,080 --> 00:10:22,940
also.

146
00:10:23,210 --> 00:10:27,690
And similarly Y is also very simple.

147
00:10:28,000 --> 00:10:33,590
Vi is I would see him divided by after dark denominator.

148
00:10:35,050 --> 00:10:36,910
Okay so using this is optional here

149
00:10:40,950 --> 00:10:44,340
and here it is mandated to use this

150
00:10:52,760 --> 00:10:54,680
so using this is optional here.

151
00:10:56,310 --> 00:10:56,840
Okay.

152
00:10:57,930 --> 00:11:00,010
Now what was our aim.

153
00:11:00,630 --> 00:11:03,420
So first of all let us calculate the numerator also.

154
00:11:03,450 --> 00:11:13,750
So in the numerator is X Multiply numerator of f one so you can sum better numerator or you can write

155
00:11:13,990 --> 00:11:21,670
this item numerator plus via multiply F2 dark numerator numerator trough F2

156
00:11:24,890 --> 00:11:35,960
now as we discussed store the desert and effluent stored desert in F1 after will remain unchanged so

157
00:11:36,380 --> 00:11:38,180
this add on numerator

158
00:11:41,750 --> 00:11:42,680
is and you m

159
00:11:46,470 --> 00:11:56,980
this error denominator then write off F1 is Elysium Okay so optional using this is optional because

160
00:11:56,980 --> 00:12:00,100
it is implicit Okay so what will happen

161
00:12:07,370 --> 00:12:18,130
so let's say there are two factions are F1 is 10 by 2 and F2 is 15 by 4 so numerator condensed in detrimental

162
00:12:18,230 --> 00:12:32,640
contains 2 This is F1 numeric res 15 business days for and this is F2 so what else can we do.

163
00:12:32,670 --> 00:12:40,140
What do the effect of line number 18 so they rather multiply after dark matter and so to multiply for

164
00:12:40,990 --> 00:12:41,690
it.

165
00:12:41,760 --> 00:12:54,920
So Elysium is it now what do the value of x axis so X is Elysium which is it divided by the amount of

166
00:12:54,980 --> 00:13:05,090
F1 so it by 2 which is food what is y and see him divided by denominator of F2 which is 2 now what will

167
00:13:05,090 --> 00:13:12,590
be the numerator so the numerator is X which is food multiplied in a trough F1 or we can say this idea

168
00:13:12,600 --> 00:13:21,050
numerator then plus what are the value of y which is to multiply fifteen so this comes out to be seventy

169
00:13:21,950 --> 00:13:29,140
and then we will store the desert in F1 so of destroying the resulting F1 this header numerator is and

170
00:13:29,150 --> 00:13:38,090
you him let's say this addresses seven hundred so this contains that function this given of that function

171
00:13:38,090 --> 00:13:39,090
contains seven hundred.

172
00:13:39,110 --> 00:13:46,840
So this idea the military's and you m so it will become seventy and this will become this Saturday night

173
00:13:46,870 --> 00:13:49,530
it is an essential item is 8 so this will become 8.

174
00:13:49,640 --> 00:13:56,770
So finally for F when the numerator is seventy and their denominator is eight so if one is seventy by

175
00:13:56,780 --> 00:14:00,250
eight and F2 is fifteen by four.

176
00:14:00,800 --> 00:14:09,320
So this was our aim after all remains unchanged after remains unchanged and F1 got abated so F1 became

177
00:14:09,680 --> 00:14:21,260
f1 plus F2 OK now ideally now ideally F1 is seventy by eight but this is not simplified after simplifying

178
00:14:21,560 --> 00:14:25,660
we will divide it by two so it will become thirty five by four.

179
00:14:25,690 --> 00:14:29,420
So this is the simplified manner we should restore is in this matter.

180
00:14:29,440 --> 00:14:33,310
This is simplified to v Okay now how to simplify affection.

181
00:14:33,670 --> 00:14:37,960
So it is very easy to simplify affection but we all know to do is.

182
00:14:37,960 --> 00:14:42,470
So what is our desired result is very simple F1 begins 70 by eight.

183
00:14:42,490 --> 00:14:46,870
Now I want to simplify this function so our zone should be thirty five by four.

184
00:14:47,260 --> 00:14:52,530
So it is very easy to simplify inflection but we all know to do is find the GC Of these two terms.

185
00:14:52,540 --> 00:14:58,150
This really means high used commando either to find you silly you should be will come out to be do and

186
00:14:58,180 --> 00:15:03,100
after finding that you should be dividing numerator and divide denominator so numerator will become

187
00:15:03,100 --> 00:15:10,960
numerator divided by GC and denominator will become denominator Baiji City.

188
00:15:11,080 --> 00:15:17,200
Now how to conclude your city for example you want to calculate the city of two numbers four and twenty.

189
00:15:17,410 --> 00:15:21,510
So what can be the maximum value of the city to the maximum value of the city can before.

190
00:15:22,630 --> 00:15:27,730
OK maximum leave the city can before you study is the highest common device and a number which will

191
00:15:27,730 --> 00:15:32,740
divide both the number four and 20 we have to find a number we have to find the highest number which

192
00:15:32,740 --> 00:15:38,610
divides both the number four and 20 so the highest value of the city can be 4.

193
00:15:38,690 --> 00:15:45,250
Okay so what we will do will start dividing from 1 then we will divide from 2 and so on then the minimum

194
00:15:45,250 --> 00:15:48,100
of two numbers A and B for example and better two numbers.

195
00:15:48,130 --> 00:15:50,950
Would you today want to find so I would start from one.

196
00:15:50,950 --> 00:15:57,760
Tell me now if a and b and I will divide I will divide I will write or divide both in number and B by

197
00:15:57,760 --> 00:16:05,270
these numbers and the mixing of these numbers will be out decently Okay so let's in gold so let's create

198
00:16:05,270 --> 00:16:10,130
a function simplify so we have a function why to simplify

199
00:16:13,860 --> 00:16:18,240
so what it will take it will not take any argument.

200
00:16:18,240 --> 00:16:18,660
Why.

201
00:16:18,660 --> 00:16:23,700
Because I will call this function and object will call this function object dot simplify.

202
00:16:23,880 --> 00:16:28,920
So no object will be sought in this keyword and with the help of this keyword we can access it properties.

203
00:16:29,010 --> 00:16:38,250
So initially let's say G 30 is when and the maximum value of the city can be so g city maximum live

204
00:16:38,280 --> 00:16:44,140
the city can be minimum of numerator and denominator so this add on numerator

205
00:16:49,000 --> 00:16:50,590
this adult denominator.

206
00:16:50,680 --> 00:16:52,090
So using this is optional here

207
00:16:58,110 --> 00:17:00,000
optional why optional.

208
00:17:00,000 --> 00:17:05,980
Because implicitly the intimate term means this ADD or denominator so optional.

209
00:17:05,990 --> 00:17:06,290
Okay.

210
00:17:08,780 --> 00:17:14,450
So the object that will call this function that objectively restored in this keyword and with the help

211
00:17:14,450 --> 00:17:23,310
of this keyword we will be able to access the properties so we will start dividing from one and we will

212
00:17:23,310 --> 00:17:24,690
go below.

213
00:17:24,750 --> 00:17:26,740
J J is the maximum you should devalue

214
00:17:29,570 --> 00:17:32,780
so try to divide numerator and denominator by G.

215
00:17:32,920 --> 00:17:33,850
So if numerator

216
00:17:36,580 --> 00:17:46,290
more i equals equals zero and denominator more i equals equals zero.

217
00:17:46,390 --> 00:17:49,450
That means I use a common factor of a and in the middle.

218
00:17:49,480 --> 00:17:51,300
So we will update disagree.

219
00:17:51,400 --> 00:17:52,780
So you suis I

220
00:17:55,890 --> 00:18:04,180
after calculating the city we have to simplify the function so simplify so for simplifying what we can

221
00:18:04,180 --> 00:18:04,930
do.

222
00:18:04,930 --> 00:18:15,770
We will update the numerator and denominator so numerator is numerator divided by DCD and similarly

223
00:18:17,420 --> 00:18:23,060
denominator is the United divided by DCD.

224
00:18:23,180 --> 00:18:26,100
Okay now we call this function simplify.

225
00:18:26,880 --> 00:18:33,590
So after that add a function our result has been updated the result has been stored in F1 software starting.

226
00:18:33,590 --> 00:18:34,580
That is our day in F1.

227
00:18:34,580 --> 00:18:41,570
We will call the simplify function so simplify not just simplify function will simplify F1.

228
00:18:41,570 --> 00:18:49,250
Now see here how we used to call a function how we used to call a function we used to call a function

229
00:18:49,250 --> 00:18:55,440
something like this object but function name object named dart function name.

230
00:18:55,620 --> 00:19:01,290
Okay but here I simply here I simply write only function name so how it will work.

231
00:19:01,310 --> 00:19:04,170
Basically basically what we're doing here.

232
00:19:04,190 --> 00:19:07,340
F1 dot and F2.

233
00:19:07,340 --> 00:19:11,420
So F1 is stored in this keyword of the add function.

234
00:19:11,420 --> 00:19:13,730
So we are in the end function.

235
00:19:13,730 --> 00:19:22,360
So in their function simplify implicitly means this add to simplify OK implicitly simplify this line

236
00:19:22,360 --> 00:19:27,460
simply means this error simplify and this contains F1 OK.

237
00:19:27,480 --> 00:19:34,050
This contains F1 so F1 will be stored in the F1 will be stored in this keyword or the simpler way function.

238
00:19:34,420 --> 00:19:42,760
So here this Gaillard will stored F1 OK so similarly here it is optional to write this at an imitator

239
00:19:42,790 --> 00:19:49,340
because implicitly it means this also admits this only OK.

240
00:19:49,550 --> 00:19:54,430
Now let us try to create an object and let's see where that our code is working or not.

241
00:19:56,180 --> 00:19:57,680
So function

242
00:20:02,260 --> 00:20:10,620
F1 let's see the numerator is uh what we decided then and also numerator used to be 90 days to certain

243
00:20:10,640 --> 00:20:12,590
number of days in the Middle East.

244
00:20:12,850 --> 00:20:21,320
And I'd say we have one more faction F2 so what was the name attended to 15 and food.

245
00:20:24,410 --> 00:20:34,640
Now let us call our function F1 not ad and we really bus F to now after that Asian let's spend the value

246
00:20:34,640 --> 00:20:36,800
of f1 enough to show F1 dart bent

247
00:20:39,530 --> 00:20:40,460
and after Dortmund

248
00:20:43,920 --> 00:20:48,780
OK let's run this file so a numerator.

249
00:20:48,870 --> 00:20:59,140
Something wrong here.

250
00:20:59,220 --> 00:21:00,510
So what did I do wrong.

251
00:21:02,000 --> 00:21:03,500
Numerator does not name or type

252
00:21:09,740 --> 00:21:11,570
numerator does not name type

253
00:21:14,640 --> 00:21:14,870
O

254
00:21:18,460 --> 00:21:19,350
silly mistake

255
00:21:26,710 --> 00:21:34,900
okay let's give n line you so f in the bank statement after bringing the numerator and denominator let

256
00:21:34,900 --> 00:21:35,620
us give a line

257
00:21:42,650 --> 00:21:49,970
C so the numerator so that one is thirty five by four f one is stratified therefore and have to is fifteen

258
00:21:49,970 --> 00:21:50,580
by four.

259
00:21:50,630 --> 00:21:55,970
So F1 was initially seventy by eight but recall the simplify function so it became thirty five by four

260
00:21:56,330 --> 00:22:02,060
and F2 remains unchanged it was fifteen by four and after the addition function it is fifteen by four

261
00:22:02,060 --> 00:22:02,970
only.

262
00:22:03,050 --> 00:22:11,280
Okay so I will call it is working now I want to just for extra information we also have a function we

263
00:22:11,280 --> 00:22:16,830
also have an inbuilt function to convert DCT so then both function work calculating use it is very simple

264
00:22:19,890 --> 00:22:21,030
so let's come and get out.

265
00:22:21,030 --> 00:22:25,280
So in build function and build function for GC

266
00:22:31,140 --> 00:22:39,570
So this is underscore underscore GST and give the two values a and b for example and B are the two numbers

267
00:22:39,620 --> 00:22:42,060
who you really we want to find so

268
00:22:45,300 --> 00:22:46,200
how can we use this.

269
00:22:46,230 --> 00:22:51,810
So end a let's say in C C will contain the GST off to numbers.

270
00:22:51,810 --> 00:22:54,980
So we you see the overall numbers E and B.

271
00:22:55,080 --> 00:22:59,900
Okay so this is evident world function and that's going to scold you silly it is that embed function

272
00:22:59,940 --> 00:23:06,000
so we can directly use this or we can use it in this function or we can find we can call registry indecision

273
00:23:06,450 --> 00:23:14,190
okay it is our choice Okay so that's all for this video thank you.
