Jet To Mastery
Jet To Mastery
  • Видео 492
  • Просмотров 17 575
Index Of Subarray Sum || GFG || DSA || HASHING || JAVA || TAMIL
🌟 Index of Subarray with Given Sum | Problem Solved in Java | GeeksforGeeks 🌟
In this video, we solve the Index of Subarray with Given Sum problem from GeeksforGeeks using Java. The task is to find the starting and ending indices of a subarray whose sum equals a given value. We will walk through the approach, discuss the efficient solution, and provide a step-by-step Java code explanation.
🚀 What you'll learn:
Problem breakdown and understanding the subarray sum concept.
Optimized solution using HashMap for efficient sum calculation.
Step-by-step Java code walkthrough with detailed explanation.
Performance optimization techniques for faster execution.
👨‍💻 Why this video matters: The Index of Sub...
Просмотров: 0

Видео

Relative Sort Array || LEETCODE-1122 || DSA || HASHING || JAVA || TAMIL
Просмотров 332 часа назад
🌟 LeetCode 1122: Relative Sort Array | Problem Solved in Java 🌟 In this video, we solve LeetCode 1122: Relative Sort Array problem using Java. The problem asks us to sort an array according to the order of a given reference array, followed by sorting the remaining elements. We will walk you through an optimized approach and explain the Java solution step by step. 🚀 What you'll learn: Problem br...
Alien Dictionary || LEETCODE-953 || HASHING || DSA || JAVA || TAMIL
Просмотров 544 часа назад
🌟 LeetCode 953: Verifying an Alien Dictionary | Problem Solved in Java 🌟 In this video, we solve LeetCode 953: Verifying an Alien Dictionary problem using Java. The problem asks us to check if a list of words is sorted lexicographically according to a given alien dictionary order. We will walk you through an efficient approach to solve this problem with step-by-step Java code and detailed expla...
Longest Subarray With Zero Sum || GFG || DSA || HASHING || JAVA || TAMIL
Просмотров 377 часов назад
🌟 Longest Subarray with Zero Sum | Problem Solved in Java | GeeksforGeeks 🌟 In this video, we solve the Longest Subarray with Zero Sum problem from GeeksforGeeks using Java. Learn how to find the longest subarray in an array whose sum is zero. This problem is a great exercise for understanding prefix sums and efficient algorithms for array problems in coding interviews. 🚀 What you'll learn: Pro...
Count Pair With Given Xor || Interviewbit || DSA || Hashing || Java || Tamil
Просмотров 429 часов назад
🌟 Count Pair with Given XOR | Problem Solved in Java | InterviewBit 🌟 In this video, we solve the Count Pair with Given XOR problem from InterviewBit using Java. Learn how to find the number of pairs in the array whose XOR equals a given value. This problem is a great exercise for understanding bitwise operations and efficient algorithms in coding interviews. 🚀 What you'll learn: Problem breakd...
Count Pair Sum || Count Pair With Given Sum || Hashing || DSA || Java || Tamil
Просмотров 3512 часов назад
🌟 Count Pair Sum | Problem Solved in Java 🌟 In this video, we solve the Count Pair Sum problem using Java. Learn how to find the number of pairs in the array whose sum equals a given value. This problem helps you understand the efficient use of hash-based data structures to solve array problems in coding interviews. 🚀 What you'll learn: Problem breakdown and understanding the constraints. Optim...
Find Pair Given Difference || Check Pair Difference || GFG || DSA || Hashing || Java || Tamil
Просмотров 714 часов назад
🌟 Find Pair with Given Difference | Problem Solved in Java | GeeksforGeeks 🌟 In this video, we solve the Find Pair with Given Difference problem from GeeksforGeeks using Java. Learn how to find a pair of elements in the array whose absolute difference equals a given number. This problem is a great exercise for improving your understanding of arrays and hash-based data structures. 🚀 What you'll ...
Check Pair Sum || Pair With Given Sum || GFG || DSA || Hashing || Java || Tamil
Просмотров 4916 часов назад
🌟 Check Pair Sum | Problem Solved in Java | GeeksforGeeks 🌟 In this video, we solve the Check Pair Sum problem from GeeksforGeeks using Java. Learn how to determine if there exists a pair in the array whose sum equals a given value. This problem tests your ability to efficiently search through arrays and is a common type of problem asked in coding interviews. 🚀 What you'll learn: Problem breakd...
Distinct Numbers In Window || DSA || Interviewbit || Hashing || Java || Tamil
Просмотров 3519 часов назад
🌟 Distinct Numbers in Window | Problem Solved in Java | InterviewBit 🌟 In this video, we solve the Distinct Numbers in Window problem from InterviewBit using Java. Learn how to find the number of distinct elements in every sliding window of a given size in an array. This problem will help you master the sliding window technique, which is widely used in coding interviews for problems involving s...
Count Subarray With 0 sum || 0 Sum Subarray || GeeksForGeeks || DSA || Java || Tamil
Просмотров 3221 час назад
🌟 Zero Sum Subarray | Problem Solved in Java | GeeksforGeeks 🌟 In this video, we solve the Zero Sum Subarray problem from GeeksforGeeks using Java. Learn how to efficiently find if there exists a subarray with a sum of zero. This problem is often asked in coding interviews to assess your understanding of cumulative sums and hash-based solutions. 🚀 What you'll learn: Problem breakdown and constr...
Leetcode-560 || Count Subarray With Given Sum || Subarray Sum Equals K || DSA || Hashing || Java
Просмотров 26День назад
🌟 LeetCode 560 - Subarray Sum Equals K | Java Solution | Jet To Mastery 🌟 In this video, we solve LeetCode 560 - Subarray Sum Equals K using Java. Learn how to efficiently find the number of subarrays whose sum equals a given value, K. We’ll discuss an optimal approach using a HashMap to store cumulative sums, allowing us to achieve a solution with linear time complexity. 🚀 What you'll learn: U...
Subarray With Given Sum || DSA || Hashing || Java || Tamil
Просмотров 43День назад
🌟 Subarray with Given Sum | Problem Solved in Java | Jet To Mastery 🌟 In this video, we solve the Subarray with Given Sum problem using Java. Learn how to efficiently find a subarray whose sum equals a given value. This is a common problem asked in coding interviews, and we will demonstrate an optimal approach using the sliding window technique and HashMap for efficient sum calculations. 🚀 What...
Subarray With Zero Sum || GeeksForGeeks || DSA || Java || Tamil
Просмотров 50День назад
🌟 Subarray with Zero Sum | Problem Solved in Java | Jet To Mastery 🌟 In this video, we solve the Subarray with Zero Sum problem using Java. Learn how to efficiently find whether a subarray with a sum of zero exists in an array. This problem is a common interview question, and we will explore the optimal solution using HashSet to achieve linear time complexity. 🚀 What you'll learn: Problem break...
Array Duplicates || GeeksForGeeks || DSA || Java || Tamil
Просмотров 39День назад
🌟 Array Duplicates Problem | GeeksforGeeks Solution in Java | Jet To Mastery 🌟 In this video, we solve the Array Duplicates problem from GeeksforGeeks using Java. Learn how to efficiently detect and count duplicate elements in an array. This tutorial covers multiple approaches to solve the problem, including the use of HashSet for optimized performance. 🚀 What you'll learn: Problem breakdown an...
Count Distinct Elements || DSA || Hashing || Java || Tamil
Просмотров 3514 дней назад
🌟 Count Distinct Elements in an Array | Java Solution | Jet To Mastery 🌟 In this video, we solve the Count Distinct Elements problem using Java. Learn how to efficiently count the number of distinct elements in an array using various techniques, including HashSet and HashMap. This tutorial provides a step-by-step guide to mastering this common problem, which is often asked in coding interviews....
Common Elements || Interviewbit || DSA || Java || Tamil
Просмотров 4014 дней назад
Common Elements || Interviewbit || DSA || Java || Tamil
Valid Anagram || Leetcode-242 || Hashing || DSA || Java || Tamil
Просмотров 1214 дней назад
Valid Anagram || Leetcode-242 || Hashing || DSA || Java || Tamil
Change Character || DSA || Hashing || Java || Tamil
Просмотров 6114 дней назад
Change Character || DSA || Hashing || Java || Tamil
First Repeating Element Query || DSA || Interviewbit || Hashing || Java || Tamil
Просмотров 1014 дней назад
First Repeating Element Query || DSA || Interviewbit || Hashing || Java || Tamil
Frequency Of Elements || DSA || Hashing || Java || Tamil
Просмотров 4614 дней назад
Frequency Of Elements || DSA || Hashing || Java || Tamil
Hashset Introduction || DSA || Hashing || Java || Tamil
Просмотров 3914 дней назад
Hashset Introduction || DSA || Hashing || Java || Tamil
Hashmap Introduction || DSA || Java || Hashing || Tamil
Просмотров 11314 дней назад
Hashmap Introduction || DSA || Java || Hashing || Tamil
String Compression || DSA || Java || Tamil
Просмотров 5821 день назад
String Compression || DSA || Java || Tamil
Longest Common Prefix || Interviewbit || DSA || Java || Tamil
Просмотров 2421 день назад
Longest Common Prefix || Interviewbit || DSA || Java || Tamil
Longest Palindromic Substring || Leetcode-5 || DSA || Java || Tamil
Просмотров 8921 день назад
Longest Palindromic Substring || Leetcode-5 || DSA || Java || Tamil
Add Binary Strings || Leetcode-67 || Data Structures And Algorithms in Java
Просмотров 6021 день назад
Add Binary Strings || Leetcode-67 || Data Structures And Algorithms in Java
Josephus Problem || DSA || Java || Tamil
Просмотров 6021 день назад
Josephus Problem || DSA || Java || Tamil
K-Closest Points To Orgin || Leetcode-973 || DSA || Java || Tamil
Просмотров 5421 день назад
K-Closest Points To Orgin || Leetcode-973 || DSA || Java || Tamil
Wave Array || GeeksForGeeks || DSA || Java || Tamil
Просмотров 6221 день назад
Wave Array || GeeksForGeeks || DSA || Java || Tamil
Multiple Left Rotation Of The Array || Interviewbit || DSA || Java || Tamil
Просмотров 2028 дней назад
Multiple Left Rotation Of The Array || Interviewbit || DSA || Java || Tamil

Комментарии

  • @ajaxx-b1u
    @ajaxx-b1u 13 дней назад

    nice teaching brother

  • @ajaxx-b1u
    @ajaxx-b1u 13 дней назад

    bro ok but last n*(n+1)/2 puriyale broo

    • @naseermohammeds4826
      @naseermohammeds4826 13 дней назад

      Bro sum of natural numbers formula terium la bro...n=5 athuku 1+2+3+4+5(till n) =15 than .. n*(n+1)/2 ---5*(5+1)/2= 15 than...itha formula purunjathula bro

  • @ajaxx-b1u
    @ajaxx-b1u 13 дней назад

    bro semma clearly explain pandrenge most underated channel ella video like comment panni ungakitte learn panna algorithem vechi youtube algorithm unga channel suggestion pannattum

    • @JT2M
      @JT2M 13 дней назад

      Thanks bro

  • @ajaxx-b1u
    @ajaxx-b1u 17 дней назад

    💥

  • @ajaxx-b1u
    @ajaxx-b1u 17 дней назад

    💥

  • @PraveenPraveen-qm7yk
    @PraveenPraveen-qm7yk 19 дней назад

    Super bro ❤❤

    • @JT2M
      @JT2M 19 дней назад

      Thanks nanba

  • @mohdhafeez5550
    @mohdhafeez5550 23 дня назад

    Please sir teach in English 😢 You'll get more support from students who doesn't know Tamil

    • @JT2M
      @JT2M 22 дня назад

      Sure , I have posted some videos in English, then I have started to post videos in tamil. Once I completed till DSA advance , then will cover everything in English also . Do you know tamil?

    • @mohdhafeez5550
      @mohdhafeez5550 22 дня назад

      @JT2M Nope Sir , I am from Telangana , I am familiar with Telugu not but Tamil ... English tops the chart among all other languages ! Hope you understand this I'll share your channel in my friend circle now ... Great Content 💯 Hats off to your dedication towards us !

    • @JT2M
      @JT2M 21 день назад

      I have completed and scheduled the videos till sorting playlist which means till DSA intermediate. Once I started the dsa advance, I will keep in my mind from telangana ppl also watching this video so I will make video with Tamil+english in same video, it could be easy to understand for you guys ...once advance is completed , I will post dsa series in completely english.

  • @nareshmarquez8472
    @nareshmarquez8472 24 дня назад

    Last question answer Ithume log2N

    • @JT2M
      @JT2M 24 дня назад

      Nice try ...but the answer is infinite nanba

    • @nareshmarquez8472
      @nareshmarquez8472 24 дня назад

      @JT2M bro dsa epadi learn panrathu

    • @nareshmarquez8472
      @nareshmarquez8472 24 дня назад

      Dsa road map sluga bro

    • @nareshmarquez8472
      @nareshmarquez8472 24 дня назад

      Innam enaku 4 months la interview irruku

    • @JT2M
      @JT2M 24 дня назад

      @@nareshmarquez8472 service based or product based?

  • @mkabilan7652
    @mkabilan7652 25 дней назад

    Work pandringala broo

    • @JT2M
      @JT2M 25 дней назад

      Yes

    • @mkabilan7652
      @mkabilan7652 25 дней назад

      @JT2M where are u working brother 😊

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 26 дней назад

    Lambda function use pani sorting panurathukukum, comparator use pani panurathukum yena difference and what is the main difference. Please tell me sir

    • @JT2M
      @JT2M 26 дней назад

      Will upload soon

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 26 дней назад

    Thank you so much bro . I learnt many things from this channel.

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 26 дней назад

    Thank you so much bro . I learnt many things from this channel.

    • @JT2M
      @JT2M 26 дней назад

      Nice

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 26 дней назад

    Thanks bro i dont know how to use comparator operator. I learnt because of you

    • @JT2M
      @JT2M 26 дней назад

      Happy learning

  • @manishamanisha6488
    @manishamanisha6488 Месяц назад

    anna i need pattern in python

    • @JT2M
      @JT2M Месяц назад

      Yes will post it as soon as possible bro

  • @Dinesh_Dumka
    @Dinesh_Dumka Месяц назад

    Please explain in English

    • @JT2M
      @JT2M Месяц назад

      Will try brother

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e Месяц назад

    Nice explanation brother

    • @JT2M
      @JT2M Месяц назад

      Thanks 😊

  • @thingintresting5495
    @thingintresting5495 Месяц назад

    Thank you Sir!

    • @JT2M
      @JT2M Месяц назад

      You are welcome!

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e Месяц назад

    Bro konjam regular a podunga bro😊

    • @JT2M
      @JT2M Месяц назад

      Ok bro ini daily one video confirm

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 2 месяца назад

    Single number 2 137 podunga sir

    • @JT2M
      @JT2M 2 месяца назад

      That has some pre requests ....let's focus on those ..but if you want to see the solution prior, ping me on instagram

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 2 месяца назад

    Thank you bro

    • @JT2M
      @JT2M 2 месяца назад

      Welcome

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 2 месяца назад

    Bro bit manipulation leetcode videos upload panuvingala. Single number 1, single number 2

    • @JT2M
      @JT2M 2 месяца назад

      Yes ....that is already video taken

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 2 месяца назад

      @JT2M bro unga contact number kidaikuma

    • @JT2M
      @JT2M 2 месяца назад

      www.jettomastery.in here you can get our telegram, Instagram,linkedin,whatsap everything

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 2 месяца назад

    Thank you so much 🙏

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 2 месяца назад

    Bro leetcode 3351 poduvingala

    • @JT2M
      @JT2M 2 месяца назад

      I will add this to my bucket list

    • @JT2M
      @JT2M 2 месяца назад

      Yes ....Today at 7pm

  • @Madhan0123
    @Madhan0123 3 месяца назад

    Your approach was good

    • @JT2M
      @JT2M 3 месяца назад

      Thanks for your comment.....we will always try to build the intuition of optimization for every problem solving

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Bro multiplication of two strings video podunga bro please 😊

    • @JT2M
      @JT2M 3 месяца назад

      Problem number ?

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 3 месяца назад

      @JT2M problem number 43

    • @JT2M
      @JT2M 3 месяца назад

      I have Recommended To watch our Anybase Multiplication Video first it is in number system playlist Link : ruclips.net/video/GMt0ilZOYDw/видео.html Anybase multiplication question need pre request of anybase addition Link : ruclips.net/video/8dPJa6ic0FE/видео.html after watching this I hope you can solve it your own...still not able to solve see this solution and analyze can you able relate ...still not able to understand...I will post a seperate video for you!!!😊 Solution : class Solution { public String multiply(String num1, String num2) { String ans="0"; String p=""; for(int i=num2.length()-1;i>=0;i--){ String m=mul(num1,num2.charAt(i)-'0'); ans=sum(ans,m+p); p=p+"0"; } return ans; } public String mul(String num,int val){ String ans=""; int c=0; for(int i=num.length()-1;i>=0;i--){ int ch=num.charAt(i)-'0'; int m=ch*val+c; c=m/10; ans=m%10+ans; } if(c>0) ans=c+ans; return ans; } public String sum(String n1,String n2){ String ans=""; int c=0; int i=n1.length()-1; int j=n2.length()-1; while(i>=0 || j>=0 || c>0){ int ld1=0,ld2=0; if(i>=0){ ld1=n1.charAt(i)-'0'; } if(j>=0){ ld2=n2.charAt(j)-'0'; } int sum=ld1+ld2+c; c=sum/10; ans=sum%10+ans; i--; j--; } int nozeroidx=0; while(nozeroidx<ans.length() && ans.charAt(nozeroidx)=='0'){ nozeroidx++; } if(nozeroidx==ans.length()) return "0"; return ans.substring(nozeroidx,ans.length()); } }

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Bro string multiplication concept podunga please. Already combination problem ketan

    • @JT2M
      @JT2M 3 месяца назад

      Bro na vetula ila bro... Atha video poda mudila sorry for that...next 3 months ku videos schedule panitengara nala athuva dailium post aagiduthu...next month vetuku ponathum video record pani post paniren

  • @parameswaripalani-w5p
    @parameswaripalani-w5p 3 месяца назад

    👍

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Thank you bro ❤

  • @venkat7390
    @venkat7390 3 месяца назад

    Nice explanation bro ❤

    • @JT2M
      @JT2M 3 месяца назад

      Thanks buddy

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Sir combination sum podunga sir logics

    • @JT2M
      @JT2M 3 месяца назад

      Will upload soon....this month completely tied up with office work...these are already recorded and scheduled videos.

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Leetcode combination problem logic podunga bro

    • @JT2M
      @JT2M 3 месяца назад

      Problem number?

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 3 месяца назад

      @@JT2M problem 39,40, 77

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 3 месяца назад

    Thank you bro ❤❤❤❤

    • @JT2M
      @JT2M 3 месяца назад

      Welcome 😊

  • @Madhan0123
    @Madhan0123 3 месяца назад

    Nice problem

    • @JT2M
      @JT2M 3 месяца назад

      Thanks 👍

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Thank you ❤❤❤

    • @JT2M
      @JT2M 4 месяца назад

      You're welcome 😊

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 4 месяца назад

      @@JT2M nice explanation bro

    • @JT2M
      @JT2M 4 месяца назад

      @@AshokKumar-y3i5e I hope now you have some idea about how to solve leetcode 46...let's try to solve now ..still struck in somewhere tomorrow leetcode 46 will publish on 7.PM

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 4 месяца назад

      @@JT2M yethana leetcode problem doubt na podalama

    • @JT2M
      @JT2M 4 месяца назад

      @@AshokKumar-y3i5e yes...follow us on Instagram..if you want any hints to solve means ..reach out us on Instagram...if you want video solution and entire explanation , then comment

  • @harivetri1503
    @harivetri1503 4 месяца назад

    Bro flask n danjo edukuringala plzzz??

    • @JT2M
      @JT2M 4 месяца назад

      Sorry dude....as of now we are focusing on DSA..after DSA we will focus framework and web development

    • @harivetri1503
      @harivetri1503 4 месяца назад

      @@JT2M ok bro may b next month ryt ??

    • @JT2M
      @JT2M 4 месяца назад

      @@harivetri1503 sorry bro, as of now we don't have any plan of frameworks...we are extremely sorry

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Java leetcode permutations problem backtracking mattum soli thanga bro

    • @JT2M
      @JT2M 4 месяца назад

      bro we will post recursion and backtracking playlist soon..there we will see many problems to understand recursion..as of now we will solve permutation problem without using recursion.

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Permutations problem podumga bro

    • @JT2M
      @JT2M 4 месяца назад

      Yes ....process is going on

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Bro antha leetcode permutations sum backtracking concept podunga bro in java la

    • @JT2M
      @JT2M 4 месяца назад

      Today 7.00 PM Next Permutation will posted in Subscriber Corner playlist

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 4 месяца назад

      @@JT2M thank you so much bro

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Problem number 46 konjam logic sollunga bro .

    • @JT2M
      @JT2M 4 месяца назад

      "Recursion and backtracking are key techniques for solving problems like this. If you're not familiar with them yet, no worries! We can wait to dive into those concepts. Alternatively, mastering the 'Next Permutation' problem (LeetCode 31) will also help you tackle LeetCode 46. I'll be adding this question to our bucket list for now."

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 4 месяца назад

      @@JT2M please sir romba confuse agutha sir

    • @naseermohammeds4826
      @naseermohammeds4826 4 месяца назад

      ​@@AshokKumar-y3i5e bro recursion and backtracking teriuma?athu terunja athula solve panuga Ilana wait panuga... recursion and backtracking ku videos poduvagalama..athuku apram niga keta problem ah try panalam...apadi Ilana leetcode la 31 next permutation nu oru question iruku....atha solve pana paruga...athu solve pana mudunja atha vechu niga keta qus solve panalamama....

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Thanks for posting this video nice explanation. Thank you so much bro

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Bro leetcode 866 code logic podunga bro

    • @JT2M
      @JT2M 4 месяца назад

      Sure , we will create a playlist called user wish...in that playlist you can find leetcode 866

    • @AshokKumar-y3i5e
      @AshokKumar-y3i5e 4 месяца назад

      @@JT2M create panitingala sir

    • @naseermohammeds4826
      @naseermohammeds4826 4 месяца назад

      Solve pani video potaga bro😊

  • @AshokKumar-y3i5e
    @AshokKumar-y3i5e 4 месяца назад

    Super bro daily um java problem solving podunga. Ungala la na naraya kathu kittan . Thank you bro

    • @JT2M
      @JT2M 4 месяца назад

      Already many videos available in Java....thanks for your valuable feedback 🙏

  • @mathamour
    @mathamour 5 месяцев назад

    10P3 = 10*9*8 ==> 10!/(10-3)! 안 해도 됨.

    • @JT2M
      @JT2M 5 месяцев назад

      Thanks for your valuable feedback

  • @saurabhshrigadi
    @saurabhshrigadi 5 месяцев назад

    Understood. Thanks for easy clarification

    • @JT2M
      @JT2M 5 месяцев назад

      Thanks for your feedback

  • @vintageman4204
    @vintageman4204 9 месяцев назад

    super bro...

    • @JT2M
      @JT2M 9 месяцев назад

      Thank you so much

  • @greggrobles3192
    @greggrobles3192 Год назад

    Promo'SM 💐

  • @imritanshulsayalwar9021
    @imritanshulsayalwar9021 Год назад

    hey sir can you please upload more and more questions on this playlist

    • @JT2M
      @JT2M Год назад

      Sure...I will try my best

  • @HemnathVS
    @HemnathVS Год назад

    Super ha explain panninga sir. Enaku iruntha doubt lam clear Achu sir . enga college kuda ippadi sollitharala sir . Thanku so much sir❤❤

    • @JT2M
      @JT2M Год назад

      TQ

  • @TR-qx7ve
    @TR-qx7ve Год назад

    Yes, will learn together post time complexity videos 😊

    • @JT2M
      @JT2M Год назад

      Yah preparing...it will come soon

  • @lets_explore_with_v4
    @lets_explore_with_v4 Год назад

    the way of teaching is good ec to understand thanks for this video 🩵

    • @JT2M
      @JT2M Год назад

      Thank you 👍