Best Time to Buy and Sell Stock III | Leetcode

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ส.ค. 2024
  • This video explains a very important programming interview problem which is buy and sell stock 3 which is from leetcode 123.I have already explained buy and sell stock 2 and buy and sell stock with cooldown and the LINK for these are present below.In this problem, i have explained the solution along with intuition for solving the problem.I have first shown the solution using backtracking and recursion and then i have shown the optimization using multi state memoization array.I have also shown an alternate memoization technique which is by using key as string (containing all appended states) and value as maximum profit obtained for that state.I have also shown all possible state transitions for all possible choices.The second method is by using divide and conquer technique which is intuitive if we divide the entire stock days into 2 parts and we take the maximum profit from each part and just add them to get max profit.I have shown intuition with examples for solving using divide and conquer.At the end of the video,I have explained the code walk through for both the techniques.CODE LINK is present below as usual. If you find any difficulty or have any query then do COMMENT below. PLEASE help our channel by SUBSCRIBING and LIKE our video if you found it helpful...CYA :)
    ========================================================================
    Join this channel to get access to perks:
    / @techdose4u
    INSTAGRAM : / surya.pratap.k
    SUPPORT OUR WORK: / techdose
    LinkedIn: / surya-pratap-kahar-47b...
    WEBSITE: techdose.co.in/
    TELEGRAM Channel LINK: t.me/codewithT...
    TELEGRAM Group LINK: t.me/joinchat/...
    =======================================================================
    CODE LINK: gist.github.co...
    USEFUL VIDEOS:-
    Best time to buy and sell stock 2: • Best time to buy and s...
    Best time to buy and sell stock with cooldown: • Best time to buy and s...

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

  • @faizanusmani2200
    @faizanusmani2200 3 ปีที่แล้ว +22

    Subscribed right away. Cant imagine the amount of work this creator is putting in making these videos. Hats Off.

  • @arnavkarforma3015
    @arnavkarforma3015 3 ปีที่แล้ว +14

    The solution of this can be much much simpler then it looks like initially
    Just have to simply consider that when we are buying something we are paying -price[i] if we are selling smth we are getting money +price[i]
    public int maxProfit(int[] prices) {
    int oneBuy = Integer.MIN_VALUE;
    int oneBuyOneSell = 0;
    int twoBuy = Integer.MIN_VALUE;
    int twoBuyTwoSell = 0;
    for(int i = 0; i < prices.length; i++){
    oneBuy = Math.max(oneBuy, -prices[i]);
    oneBuyOneSell = Math.max(oneBuyOneSell, prices[i] + oneBuy);
    twoBuy = Math.max(twoBuy, oneBuyOneSell - prices[i]);
    twoBuyTwoSell = Math.max(twoBuyTwoSell, twoBuy + prices[i]);
    }
    return Math.max(oneBuyOneSell, twoBuyTwoSell);
    }

  • @dhruvsharma6772
    @dhruvsharma6772 3 ปีที่แล้ว +10

    Thank you very much for such a wonderful explanation.Intuition development is very Important rather than coding and learning formula for this problem and you have explained it in depth with appropriate examples. Please keep making videos like these.

  • @nightmarauder2909
    @nightmarauder2909 2 ปีที่แล้ว +3

    I really like that you explained the thought process behind implementing memoization. Thank you for that!

  • @rajatbudania6181
    @rajatbudania6181 3 ปีที่แล้ว +3

    Best explanation series on Buy And Sell Problems !!

  • @MrRobot-mb6rq
    @MrRobot-mb6rq 3 ปีที่แล้ว +17

    Why TH-cam doesn't have option for liking more than once?
    Great explanation man🔥

  • @gurnoorsingh2954
    @gurnoorsingh2954 4 ปีที่แล้ว +6

    I don't think this could have been explained better than you did

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว +1

      Thanks buddy :)

  • @AkshayKumar-xh2ob
    @AkshayKumar-xh2ob 3 ปีที่แล้ว +2

    Was struggling with this question and the intuition behind the soln for the whole day. As always TECH DOSE saves the day.

  • @annawilson3824
    @annawilson3824 2 ปีที่แล้ว +3

    Awesome video! In principle, we don't need the 1st loop, and going further we can solve even in one scan.

  • @mohinipotdar477
    @mohinipotdar477 3 ปีที่แล้ว +2

    Explained very well and smoothly converted complex problem into simpler one. Thanks for such wonderful video.

  • @tanvisharma6879
    @tanvisharma6879 3 ปีที่แล้ว +2

    Very well explained. Hats off to Tech Dose!

  • @lapujain
    @lapujain 4 ปีที่แล้ว +7

    Amazing explanation. Hats off to you for putting so much efforts.

  • @jaatharsh
    @jaatharsh 3 ปีที่แล้ว +4

    thanks a lot, dude, ur detailed explanation definitely helped understand the crux of the problem.
    keep up the great work.

  • @dushyantsingh2624
    @dushyantsingh2624 4 ปีที่แล้ว +14

    watching his amazing explanation at 3:20 am while waiting for 4:20am

  • @subhascse
    @subhascse ปีที่แล้ว +1

    Wonderful!! Finally a very good explanation!! Thanks a lot.

  • @rajeshadam978
    @rajeshadam978 2 ปีที่แล้ว

    I think its somewhat complicated to explain but you explained well !
    here is a easy approach :
    class Solution {
    public int maxProfit(int[] p) {
    int pr1=0;
    int pr2=0;
    int mn1=Integer.MAX_VALUE;
    int mn2=Integer.MAX_VALUE;
    for(int i=0;i

  • @JyotiprakashMandal-bp8ng
    @JyotiprakashMandal-bp8ng หลายเดือนก่อน

    Divide and conquer easy damn easy thanks a lot

  • @MrACrazyHobo
    @MrACrazyHobo 2 ปีที่แล้ว +3

    For any newcomers, the divide and conquer approach is the easiest to understand.

  • @saneethvarma7806
    @saneethvarma7806 3 ปีที่แล้ว +3

    Best Explanation for this problem.

  • @vrushankrao4911
    @vrushankrao4911 4 ปีที่แล้ว +3

    Kicking off the day with this video 🔥

  • @bharathkumar5870
    @bharathkumar5870 2 ปีที่แล้ว

    wow..that divide and conquour approach is super

  • @abhilakshmaheshwari9360
    @abhilakshmaheshwari9360 2 ปีที่แล้ว +1

    Big cheers to you man, explained really well!!!!🙌

  • @BurhanWani1
    @BurhanWani1 3 ปีที่แล้ว +4

    Great explanation. Keep up the good work

  • @robertmiller3765
    @robertmiller3765 ปีที่แล้ว

    I think the string operation glossed over in the middle is actually O(1) (since the length of the string would be constant) as it's just concatenating 3 numbers (not n numbers).

  • @EditorGuru
    @EditorGuru 3 ปีที่แล้ว +1

    Amazing explanation brother...Thank you so much

  • @anmolsharma9539
    @anmolsharma9539 11 หลายเดือนก่อน

    This is some next level stuff thank you so much sir. you are the real deal.

  • @SHASHIKUMAR-pp4hg
    @SHASHIKUMAR-pp4hg 4 ปีที่แล้ว +6

    I did it in O(n) time and space still 5%,5% on leetcode!!!!!!!!!!!!!!

    • @pamelamoore9608
      @pamelamoore9608 3 ปีที่แล้ว

      Don't feel bad ... I tried a bottom-up DP approach to this, allocating a jagged array which is essentially O((N^2)/2) space (each cell storing an int), where each row corresponds to the end of the subarray and the column corresponds to the beginning of the subarray, and I also approach this using a divide and conquer (i.e. partition the array in 2 pieces (for the 2 transactions), and calculate max profit per subarray (calculating just once), and I don't get any TLE, but I blow up memory about test case 202 (of 214). I'm now trying to figure out how I can calculate better the next partition based on the previous partition. It's vicious (that's why it's hard).

  • @Suraj-lo7bg
    @Suraj-lo7bg 2 ปีที่แล้ว +1

    i should take max(profit, left[i]+right[i]) . if we take left[i-1] we're excluding a fact that ith element may be the maximum of left subarray and minimum of right subarray.... in that case. transaction where we sell on ith day while we bought from a day on left, is ignored. and if we have to sell and buy on same day... that's same as holding it, because left subarray ensures that we've already purchased before we're trying to sell. check for the input.. 1 2 3 4 5 . now consider 3 as pivot.. profit left = 1, and profit right = 5-3 = 2.. total profit = 3... but max profit is 4. 5-1.

    • @pavittarkumarazad3259
      @pavittarkumarazad3259 4 หลายเดือนก่อน

      This needs to be pinned. I was facing the same issue and resolved this by myself but was looking for the explanation. Thanks :)

  • @drishtdyumnshrivastava5313
    @drishtdyumnshrivastava5313 2 ปีที่แล้ว

    that divide and conquer approach simultaneously gave me Goosebumps but also left me in awe by the pure beauty of the approach..... As always really appreciate your work.....thank you.!!!

  • @ayushgarg5929
    @ayushgarg5929 3 ปีที่แล้ว

    Shortest Code Ever:-
    int maxProfit(vector& prices) {
    int n=prices.size();
    if(n==0)
    return 0;
    int k1=0,k2=0,b1=-prices[0],b2=-prices[0],K1,K2,B1,B2;
    for(int i=1;i

  • @MiddleClassTalk
    @MiddleClassTalk 2 ปีที่แล้ว +1

    amazing devide and conqure approach

  • @ajaywadhwa3398
    @ajaywadhwa3398 3 ปีที่แล้ว +2

    Wow !!! This is really an awesome explanation.

  • @yitingg7942
    @yitingg7942 3 ปีที่แล้ว +3

    Wow you just never stop surprising me. I am speechless!! Can I be your student please ?!!!😉😉

    • @techdose4u
      @techdose4u  3 ปีที่แล้ว

      You are not just a student 🤪

  • @Mandeepsingh-jo5cf
    @Mandeepsingh-jo5cf 3 ปีที่แล้ว

    You are the Best .

  • @seekimaan
    @seekimaan ปีที่แล้ว

    amazing explanation, thank you very much sir!

  • @santoshreddy3
    @santoshreddy3 3 ปีที่แล้ว +1

    You are awesome. Very nice explanation.

  • @sumashreyatv2506
    @sumashreyatv2506 4 ปีที่แล้ว +1

    Amazing explanation....so easy to understand.

  • @amchourasia
    @amchourasia 2 ปีที่แล้ว +1

    Beautiful explanation

  • @MrKasle
    @MrKasle 2 ปีที่แล้ว +1

    Great Explanation!!!

  • @manasbohat6883
    @manasbohat6883 3 ปีที่แล้ว +2

    thank you man , this was amazing

  • @siddharthmehta6966
    @siddharthmehta6966 2 ปีที่แล้ว

    Simply , Loved it !

  • @Samir-ow6sq
    @Samir-ow6sq 2 ปีที่แล้ว

    Good Explanation

  • @shaheenrafiq5974
    @shaheenrafiq5974 2 ปีที่แล้ว

    It's almost like you've hacked the human brain. *_*
    Cant believe I understood it in a single go!

  • @meylyssa3666
    @meylyssa3666 3 ปีที่แล้ว +1

    Nice explanation! Thanks!

  • @hriteshupadhyaya4440
    @hriteshupadhyaya4440 3 ปีที่แล้ว +2

    your dp approach is not getting accepted on interviewbit.

    • @techdose4u
      @techdose4u  3 ปีที่แล้ว

      Maybe they want divide and conquer. Interviewbit may set their requirement for the most optimal. Try the same on leetcode with DP. It depends of what complexity they are expecting.

    • @hriteshupadhyaya4440
      @hriteshupadhyaya4440 3 ปีที่แล้ว

      @@techdose4u ya It is fine for leetcode

  • @xiaoweidu4667
    @xiaoweidu4667 5 หลายเดือนก่อน

    Fantastic!

  • @souravsaha3446
    @souravsaha3446 3 ปีที่แล้ว

    Nice sir but in real practice we can sell a stock before buying .Thank you for amazing explanation

  • @kapilgupta8543
    @kapilgupta8543 3 ปีที่แล้ว +1

    Nice intuitive explanation!

  • @kunalsoni7681
    @kunalsoni7681 4 ปีที่แล้ว +1

    Sir really very amazing 😍😊 video and explanation is seriously beautiful and 😍😍😍

  • @shaswatdas6553
    @shaswatdas6553 4 ปีที่แล้ว +1

    You should upload on Box stacking DP problem. No good content is available on this topic. Thanks in advance!! ❤️

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      Okay I will try

    • @shaswatdas6553
      @shaswatdas6553 4 ปีที่แล้ว

      @@techdose4u thanks!❤️ Can you do it sooner?😅 Interview date is near.

  • @hoyinli7462
    @hoyinli7462 2 ปีที่แล้ว

    thx for ur video!

  • @vinothrajg8576
    @vinothrajg8576 4 ปีที่แล้ว +1

    Great stuff again ☺️.. Thank your

  • @praveenbandaru8700
    @praveenbandaru8700 2 ปีที่แล้ว +1

    why is time complexity 2^n for memoization?

  • @ajmalmohamed
    @ajmalmohamed 3 ปีที่แล้ว +1

    Awesome

  • @MansiThakkar139
    @MansiThakkar139 3 ปีที่แล้ว +1

    Very useful! Thank you

  • @PawanKumar-tu6ti
    @PawanKumar-tu6ti 2 ปีที่แล้ว

    thank you sir.

  • @rahulmistry9173
    @rahulmistry9173 3 ปีที่แล้ว +1

    Amazing!!!! Could you explain the time complexity after adding memoization to the recursive solution? You didn't mention that

    • @MrVishal203
      @MrVishal203 2 ปีที่แล้ว

      I think, number of calls in that case will also be 2^n, only difference is it will not calculate all the cases as the repeated ones are already stored. Please correct if this is wrong.

  • @vishalverma920
    @vishalverma920 2 ปีที่แล้ว +1

    what is the time complexity of recursive solution after memoization ??

  • @aksay.3823
    @aksay.3823 3 ปีที่แล้ว +1

    The idea(Divide and conquer one) is kind of related to the candy peoblem in leetcode.

    • @techdose4u
      @techdose4u  3 ปีที่แล้ว

      👍🏼

    • @aksay.3823
      @aksay.3823 3 ปีที่แล้ว

      @@techdose4u Hey how about when we generalize and say k transactions are allowed then we will have to apply the memoization approach?

  • @dovyraj1272
    @dovyraj1272 4 ปีที่แล้ว +3

    sir, nice explanation, but how to get idea , the idea is not striking at all, when i see a new kind of problem, please help

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว +1

      Maybe divide and conquer don't strike but recursion should be intuitive if you had solved cooldown problem or if you have practiced enough on backtracking. So try to think about observations and try to see if a problem can be framed or converted to other problem. This was you can practice to improve yourself.

  • @thinkverse94
    @thinkverse94 4 ปีที่แล้ว

    One Query. Please Clarify @TECH DOSE
    for example, prices = [1,2,3,4]
    If we partition in price=2, ([1,2] [2,4]) OR ([1,2] [3,4]) ...which one is correct?
    My question is, in the same day can we sell the stock first and buy the stock ? (i.e. [[1,2] [2,4]] / [[1,3][3,4]] / ...... )
    Or, Sell and buy must be in diff day ?

  • @nikhilchandna4851
    @nikhilchandna4851 3 ปีที่แล้ว +1

    Great Explanation

  • @vinayak186f3
    @vinayak186f3 2 ปีที่แล้ว +2

    If you don't come up with the solution , ask the interviewer to explain it to you

  • @ashutoshtiwari4719
    @ashutoshtiwari4719 3 ปีที่แล้ว +2

    Thank you !!

  • @mystryb345
    @mystryb345 4 ปีที่แล้ว +1

    very good explanation sir

  • @BlumChoi
    @BlumChoi ปีที่แล้ว

    Please explain how to choose the dividing line in the divide and conquer approach

  • @chaitanyabalanagu626
    @chaitanyabalanagu626 10 หลายเดือนก่อน

    divide and conquer @ 14:16

  • @mhaesh
    @mhaesh 4 ปีที่แล้ว

    Nice explanation. Can you please make video for Best Time to Buy and Sell Stock with transaction fee

  • @Arunkumar-bo2wc
    @Arunkumar-bo2wc 2 ปีที่แล้ว

    Amazing

  • @yashjain992
    @yashjain992 4 ปีที่แล้ว +1

    This is gold!!

  • @Kevin-gf8mq
    @Kevin-gf8mq 3 ปีที่แล้ว

    Why do we need 3 states? At end of the day, there're only 2 states anyway, either hold cash or hold stock.

  • @toose8388
    @toose8388 2 ปีที่แล้ว

    Isn't this divide and conquer approach O(n^2)? As you have to loop over each element, and for each element check all elements to its left and right? In fact, my implementation of this method exceeds time limit on leetcode...

  • @VS-cy8oy
    @VS-cy8oy 3 ปีที่แล้ว

    I have doubt, how do we come up with divide and conquer approach. i mean, How do we come to know that create left and right array with values and summing up them will give us the result.Is there any logical sequence behind this summing technique, from left to right i understood, but from right to left i am unable to get on what ground we are confirmed that taking max will work. I am confused in that, Will be huge help if you can clear this doubt please. I have solved it with recursion, but that wasnt accepting on IB, so i came across your d&c approach, please clear this doubt, thanks and really appreciate your work..

  • @ankushroy919
    @ankushroy919 3 ปีที่แล้ว

    i dont understand why u are moving in opposite direction we can also move from the i th position towards nth position

  • @abhishekkumargupta3043
    @abhishekkumargupta3043 4 ปีที่แล้ว +2

    Can't we sell and then buy that same stock on the same day? Or, are we already taking that into account here in the mentioned process. Please explain.

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว +1

      We can't sell before buying and we cannot perform multiple operations on the same day. Only buy or sell on a day. I had said about this in the video.

    • @abhishekkumargupta3043
      @abhishekkumargupta3043 4 ปีที่แล้ว +2

      @@techdose4u Yes seen that, but it's not mentioned in the given problem description. Apparently ,we have to assume that.
      Well thanks for the reply. Cheers!

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว +1

      Yea it was not clear.

  • @SHASHANKRUSTAGII
    @SHASHANKRUSTAGII 3 ปีที่แล้ว

    Just tell me how will it come to my mind?
    How can one think this optimal approach by own?

  • @SushilKumar-wt7js
    @SushilKumar-wt7js 3 ปีที่แล้ว +1

    in memoization case time complexity would be O(2*3*n) => O(n) right?

  • @aleaf355
    @aleaf355 ปีที่แล้ว +1

    Please add timestamps for long videos

  • @jimsmith4739
    @jimsmith4739 3 ปีที่แล้ว

    @techdose Why are we going from end to middle in case of the right side from center and why not go just like he left side which is (along the timeline and not against)

  • @prateeksinghal630
    @prateeksinghal630 3 ปีที่แล้ว

    Can you please tell the time complexity of the memoized solution for this problem !!

  • @manishgoyal5298
    @manishgoyal5298 4 ปีที่แล้ว +1

    Can you please suggest some more problems to practice peak valley approach.

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      Other versions of this problem are on similar logic. I had covered more of such videos in challenges but don't remember the name 😅

  • @golekhabhoi7356
    @golekhabhoi7356 2 ปีที่แล้ว

    After buying a stock fall in - 5% what is the calculatin of profit and loss kingly guide me

  • @gladyouseen8160
    @gladyouseen8160 3 ปีที่แล้ว

    Sir can we solve this problem using state machine?

  • @tharunkumarreddy1224
    @tharunkumarreddy1224 2 ปีที่แล้ว

    could someone explain difference between buy and sell stock2 problem and buy and sell stock 3 problem

  • @tilakrajrao2753
    @tilakrajrao2753 3 ปีที่แล้ว

    what will the overall time complexity of memoization approach ??? please do reply

  • @witty_idipt
    @witty_idipt 3 ปีที่แล้ว

    can you please tell how time complexity of state machine code will be O(n)

  • @AshwaniKumar-tw8vp
    @AshwaniKumar-tw8vp 3 ปีที่แล้ว +1

    𝙄 𝙖𝙢 𝙖𝙙𝙙𝙞𝙘𝙩𝙚𝙙 𝙩𝙤 𝙙𝙤𝙨𝙚𝙨 𝙜𝙞𝙫𝙚𝙣 𝙗𝙮 𝙏𝙀𝘾𝙃 𝘿𝙊𝙎𝙀.🔥🔥🔥🔥

  • @MagicalCreationAviCreation
    @MagicalCreationAviCreation 4 ปีที่แล้ว +1

    Sir I am solving leetcode challenges since from 1 and half month , but some of problem I can't able to solve by my own ,once I watch solution then I think that I don't know even simple logic also, then i feel sad, then i close the laptop,
    sir can you give me any suggestions
    I want to become like u sir,

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      Just spend some time about thinking the problem. Try harder each time. If you can't solve then read editorials and try to code yourself. You will definitely improve :)

    • @MagicalCreationAviCreation
      @MagicalCreationAviCreation 4 ปีที่แล้ว

      @@techdose4u yeah I will definitely do sir,thank you sir

  • @starc701
    @starc701 4 ปีที่แล้ว +1

    sir one request from deepest of my heart ,and soul . can u make its 4th part, which i consider the toughest among all. plz sir , plz i beg u.plz make it , placement session is going on.

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      Okay I will make it.

    • @starc701
      @starc701 4 ปีที่แล้ว +1

      @@techdose4u and sir in ur telegram channel u said to ask questions there, but how can we message in a channel, telegram doesn't allow that, plz create a group sir, thank you very much sir

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      I have created both group and channel. Join both. They have different uses.

    • @starc701
      @starc701 4 ปีที่แล้ว

      @@techdose4u oops i only saw the channel link, now i got it.

  • @vaibhavaggarwal6808
    @vaibhavaggarwal6808 3 ปีที่แล้ว

    is any iterative solution possible

  • @seal0118
    @seal0118 3 ปีที่แล้ว +1

    how did you know all this, sir?
    is there a book that teaches you how to tackle these problems ?

    • @techdose4u
      @techdose4u  3 ปีที่แล้ว

      There is no such book 😅

    • @seal0118
      @seal0118 3 ปีที่แล้ว

      ​@@techdose4u but sir, this is very unintuitive for me, how do i learn about all this?, this is the first time i see dp problem with more than 1 state

  • @ashishg656
    @ashishg656 4 ปีที่แล้ว +1

    Great :)

  • @momozkichutney
    @momozkichutney 2 ปีที่แล้ว +1

    Why t=0 is out of bound.
    T

  • @nimishabajpai6816
    @nimishabajpai6816 4 ปีที่แล้ว

    Can anyone tell that in the preferred language if I have wriitten java in kick start competition then I will get only java to use in coding??

  • @utkarshpanwar2358
    @utkarshpanwar2358 4 ปีที่แล้ว +1

    how can i see the implemented class behind the function on leetcode . please help me

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      I don't think you can.

    • @utkarshpanwar2358
      @utkarshpanwar2358 4 ปีที่แล้ว

      @@techdose4u but i did many times now i forgot how i did that or may they removed that option

    • @utkarshpanwar2358
      @utkarshpanwar2358 4 ปีที่แล้ว

      @@techdose4u you are doing good may i suggest you something which i feel you should work on that related to presentation

    • @vivekbudge9706
      @vivekbudge9706 4 ปีที่แล้ว

      @@utkarshpanwar2358 check successfully submitted solution, there are bars....for all usecases... click b on bar ... it will show underline program

  • @abhishekkumargupta3043
    @abhishekkumargupta3043 4 ปีที่แล้ว +1

    why going backwards works?

    • @abhishekkumargupta3043
      @abhishekkumargupta3043 4 ปีที่แล้ว +1

      Ok, so i understand it. (* starts crying in background).

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      ??

    • @abhishekkumargupta3043
      @abhishekkumargupta3043 4 ปีที่แล้ว +1

      @@techdose4u why going backwards (i.e. selling first and buying later) or reversing timeline for 2nd array works?

  • @svcba_hvac
    @svcba_hvac 4 ปีที่แล้ว +1

    Would you please add subtitle in your video?

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      I am trying. I hope it's fixed soon. I am getting some problem in auto-generated English sub.

  • @2121sourabh
    @2121sourabh 3 ปีที่แล้ว +1

    GOD

  • @exodus5948
    @exodus5948 4 ปีที่แล้ว +1

    Legends come at night 😁😁

  • @ArbitCode
    @ArbitCode 4 ปีที่แล้ว

    which software do you use sir? is it openboard

    • @techdose4u
      @techdose4u  4 ปีที่แล้ว

      Wacom pro sketch.io