My Project Ideas
My Project Ideas
  • Видео 531
  • Просмотров 609 593
Lecture 34 - Tower of Hanoi | DSA Basics For Beginners | Placement Course
Welcome to Lecture 34 - Tower of Hanoi, part of our DSA Placement Course. In this lecture, we will learn the classic problem of Tower of Hanoi, understand its recursive solution, and implement it efficiently in Python.
What is the Tower of Hanoi Problem in DSA?
The Tower of Hanoi is a mathematical puzzle involving three rods and a number of disks. The goal is to move all the disks from the source rod to the destination rod, following these rules:
Only one disk can be moved at a time.
A disk can only be placed on top of a larger disk or an empty rod.
How Does Recursion Solve the Tower of Hanoi Problem?
Recursion is perfect for this problem as it:
Breaks the problem into smaller subproblems by mov...
Просмотров: 34

Видео

Lecture 33 - Generate Subsets | DSA Basics For Beginners | Placement Course
Просмотров 32Месяц назад
Welcome to Lecture 33 - Generate Subsets, part of our DSA Placement Course. In this lecture, we will learn how to generate all possible subsets of a given set using recursion. You will understand the concept, explore recursive logic, and implement it efficiently in Python. What is the Subset Generation Problem in DSA? The subset generation problem involves finding all possible subsets of a give...
Lecture 32 - Rope Cutting Problem | DSA Basics For Beginners | Placement Course
Просмотров 232 месяца назад
Welcome to Lecture 32 - Rope Cutting Problem, part of our DSA Placement Course. In this lecture, we will explore the rope cutting problem, understand its recursive solution, and implement it efficiently in Python. What is the Rope Cutting Problem in DSA? The rope cutting problem involves cutting a rope into pieces of specified lengths such that the maximum number of pieces is obtained. It is a ...
Lecture 31 - Sum of Digits using recursion | DSA Basics For Beginners | Placement Course
Просмотров 112 месяца назад
Welcome to Lecture 31 - Sum of Digits Using Recursion, part of our DSA Placement Course. In this lecture, we will learn how to calculate the sum of digits of a number using recursion, understand the recursive logic, and implement it efficiently in Python. What is the Sum of Digits in DSA? The sum of digits refers to the total of all individual digits in a number. For example, the sum of digits ...
Lecture 30 - Palindrome check using recursion | DSA Basics For Beginners | Placement Course
Просмотров 102 месяца назад
Welcome to Lecture 30 - Palindrome Check Using Recursion, part of our DSA Placement Course. In this lecture, we will explore how to verify if a string is a palindrome using recursion. You will understand the concept, the recursive logic, and how to implement it effectively in Python. What is a Palindrome in DSA? A palindrome is a string that reads the same forward and backward, such as "radar" ...
Lecture 29 - Natural Number Sum using recursion | DSA Basics For Beginners | Placement Course
Просмотров 182 месяца назад
Welcome to Lecture 29 - Natural Number Sum Using Recursion, part of our DSA Placement Course. In this lecture, we will learn how to calculate the sum of natural numbers using recursion, understand the logic behind it, and implement the solution step by step in Python. What is Natural Number Sum in DSA? The sum of natural numbers involves adding up all integers from 1 to a given number N. Using ...
Lecture 28 - Tail Recursion | DSA Basics For Beginners | Placement Course
Просмотров 192 месяца назад
Welcome to Lecture 28 - Tail Recursion, part of our comprehensive DSA Placement Course. In this lecture, we will explore the concept of tail recursion, understand its importance in problem-solving, and learn how to implement it effectively in Python. What is Tail Recursion in DSA? Tail recursion is a special type of recursion where the recursive call is the last operation performed by the funct...
Lecture 27 - Print 1 to N using recursion | DSA Basics For Beginners | Placement Course
Просмотров 193 месяца назад
Welcome to Lecture 27 - Print 1 to N using recursion, of our DSA Placement Course. In this lecture, we will get an understanding of recursions and how to implement them in coding. The coding implementation is done using Python. What is recursion in DSA? A recursive function solves a particular problem by calling a copy of itself and solving smaller subproblems of the original problems. What is ...
Lecture 26 - Print N to 1 using recursion | DSA Basics For Beginners | Placement Course
Просмотров 293 месяца назад
Welcome to Lecture 26 - Print N to 1 using recursion, of our DSA Placement Course. In this lecture, we will get an understanding of recursions and how to implement them in coding. The coding implementation is done using Python. What is recursion in DSA? A recursive function solves a particular problem by calling a copy of itself and solving smaller subproblems of the original problems. What is ...
Lecture 25 - Recursion Introduction | DSA Basics For Beginners | Placement Course
Просмотров 153 месяца назад
Welcome to Lecture 25 - Recursion Introduction, of our DSA Placement Course. In this lecture, we will get an understanding of recursions and how to implement them in coding. What is recursion in DSA? A recursive function solves a particular problem by calling a copy of itself and solving smaller subproblems of the original problems. What is recursion in structured programming? Recursion is a te...
Lecture 24 - Iterative Power | DSA Basics For Beginners | Placement Course
Просмотров 143 месяца назад
Welcome to Lecture 24 - Iterative Power of our DSA Placement Course. In this lecture, we will get an understanding of Iterative Power and how to implement them in coding. What is iterative method in DSA? - Iterative power in DSA is a technique that uses a loop to repeat instructions until a condition is met to calculate the power of a number. The power of a number is the number of times the num...
Lecture 23 - Modular Arithmetic | DSA Basics For Beginners | Placement Course
Просмотров 123 месяца назад
Welcome to Lecture 23 - Modular Arithmetic of our DSA Placement Course. In this lecture, we will get an understanding of the Time Complexities of Algorithms and how to implement them in coding. What is Modular Arithmetic? - Modular arithmetic is a system of arithmetic for integers, where numbers wrap around upon reaching a certain value, known as the modulus. What is modular arithmetic in data ...
Lecture 22 - Computing Power | DSA Basics For Beginners | Placement Course
Просмотров 93 месяца назад
Welcome to Lecture 22 - Computing Power of our DSA Placement Course. In this lecture, we will get an understanding of the Time Complexities of Algorithms and how to implement them in coding. What is Computing Power in DSA? - Computing power is the ability of a device to process data to achieve a certain output and relies on computing resources such as the central processing unit (CPU), graphics...
Lecture 21 - Sieve of Eratosthenes | DSA Basics For Beginners | Placement Course
Просмотров 73 месяца назад
Welcome to Lecture 21 - Sieve of Eratosthenes of our DSA Placement Course. In this lecture, we will get an understanding of the Sieve of Eratosthenes and how to implement them in coding. What is the Sieve of Eratosthenes in DSA? - The Sieve of Eratosthenes is a classic method for efficiently finding prime numbers up to a given limit, crucial in cryptography for securing data like credit card nu...
Lecture 20 - All Divisor Of A Number | DSA Basics For Beginners | Placement Course
Просмотров 153 месяца назад
Welcome to Lecture 20 - All Divisor Of A Number of our DSA Placement Course. In this lecture, we will get an understanding of the Time Complexities of Algorithms and how to implement them in coding. What is All Divisor Of A Number in Data Structure? - In division, the divisor is the number by which the dividend is divided to obtain the quotient. A number that divides another number either compl...
Lecture 19 - Prime Factor | DSA Basics For Beginners | Placement Course
Просмотров 113 месяца назад
Lecture 19 - Prime Factor | DSA Basics For Beginners | Placement Course
Lecture 18 - Check For Prime | DSA Basics For Beginners | Placement Course
Просмотров 84 месяца назад
Lecture 18 - Check For Prime | DSA Basics For Beginners | Placement Course
Lecture 17 - LCM Of Two Numbers | DSA Basics For Beginners | Placement Course
Просмотров 364 месяца назад
Lecture 17 - LCM Of Two Numbers | DSA Basics For Beginners | Placement Course
Lecture 16 - GCD Of Two Numbers | DSA Basics For Beginners | Placement Course
Просмотров 104 месяца назад
Lecture 16 - GCD Of Two Numbers | DSA Basics For Beginners | Placement Course
Lecture 15 - Trailing Zeros In Factorial | DSA Basics For Beginners | Placement Course
Просмотров 154 месяца назад
Lecture 15 - Trailing Zeros In Factorial | DSA Basics For Beginners | Placement Course
Lecture 14 - Factorial Of A Number | DSA Basics For Beginners | Placement Course
Просмотров 124 месяца назад
Lecture 14 - Factorial Of A Number | DSA Basics For Beginners | Placement Course
Lecture 13 - Palindrome Numbers | DSA Basics For Beginners | Placement Course
Просмотров 84 месяца назад
Lecture 13 - Palindrome Numbers | DSA Basics For Beginners | Placement Course
Lecture 12 - Count Digits | DSA Basics For Beginners | Placement Course
Просмотров 144 месяца назад
Lecture 12 - Count Digits | DSA Basics For Beginners | Placement Course
Lecture 11 - Space Complexity | DSA Basics For Beginners | Placement Course
Просмотров 124 месяца назад
Lecture 11 - Space Complexity | DSA Basics For Beginners | Placement Course
Lecture 10 - Recursion Tree Method For Solving Recurrences | DSA Basics For Beginners & Placement
Просмотров 204 месяца назад
Lecture 10 - Recursion Tree Method For Solving Recurrences | DSA Basics For Beginners & Placement
Lecture 9 - Analysis Of Recursion | DSA Basics For Beginners | Placement Course
Просмотров 134 месяца назад
Lecture 9 - Analysis Of Recursion | DSA Basics For Beginners | Placement Course
Lecture 8 - Analysis Of Common Loops | DSA Basics For Beginners | Placement Course
Просмотров 184 месяца назад
Lecture 8 - Analysis Of Common Loops | DSA Basics For Beginners | Placement Course
Lecture 7 - Theta Notation | DSA Basics For Beginners | Placement Course
Просмотров 84 месяца назад
Lecture 7 - Theta Notation | DSA Basics For Beginners | Placement Course
Lecture 6 - Omega Notation | DSA Basics For Beginners | Placement Course
Просмотров 124 месяца назад
Lecture 6 - Omega Notation | DSA Basics For Beginners | Placement Course
Lecture 5 - Big O Notation | DSA Basics For Beginners | Placement Course
Просмотров 144 месяца назад
Lecture 5 - Big O Notation | DSA Basics For Beginners | Placement Course

Комментарии

  • @myprojectideas
    @myprojectideas День назад

    Download zip code here: petrepopescu.tech/wp-content/uploads/2021/01/event_handling_java.zip

  • @AssamTechSupport8
    @AssamTechSupport8 День назад

    Have single streaming url with autodj

  • @AssamTechSupport8
    @AssamTechSupport8 День назад

    Can be installed on Cpanel please reply. And its working with any third-party API or itself

  • @salstatic
    @salstatic 3 дня назад

    thank you sir!!, we need the src

    • @myprojectideas
      @myprojectideas День назад

      petrepopescu.tech/wp-content/uploads/2021/01/event_handling_java.zip

  • @oiabhii
    @oiabhii 3 дня назад

    i'm getting 406 Client Error for API how to solve this error.

  • @gowthamk800
    @gowthamk800 6 дней назад

    Bro i have issue with adding calendar jar

  • @sabrinamuller586
    @sabrinamuller586 7 дней назад

    Hello. If I want to bind this to my Fiori Launchpad, how do I create the Fiori Tile (Catalog & Group)? Is it Plugin Shell or something like that? I want to add it on the Home Landpage Thanks 🌷

  • @navjeetsingh8821
    @navjeetsingh8821 7 дней назад

    Your code show error plz help

  • @vamsikrishna6036
    @vamsikrishna6036 7 дней назад

    can u show us how to create smarttable using OData V4 we are doing RAPM , i need to create a smarttable using OdataV4

  • @sathvik8140
    @sathvik8140 7 дней назад

    Which module is good to learn in BTP ? Can you pls suggest

  • @motivevotex
    @motivevotex 8 дней назад

    hello sir, tried cloning the repo and i already have my own api keys but it keeps saying not found then i checked the console and so that the request was forbidden. Is there any way i can fi this.

  • @danielntumba7106
    @danielntumba7106 9 дней назад

    whats the limit on messages that i can sned?

    • @myprojectideas
      @myprojectideas 9 дней назад

      There is a user rate limit of 200 requests per 15 minutes for the POST method. There is also a rate limit of 1000 requests per 24 hours per user. devcommunity.x.com/t/dm-rate-limits/183436

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

    can this work in netbeans?

  • @szilardkiss7345
    @szilardkiss7345 14 дней назад

    Very Good!

  • @aimanyounas5918
    @aimanyounas5918 14 дней назад

    The fan such oscillates a. Little that's all. Doesn't move or rotates.

  • @lucidboy9436
    @lucidboy9436 17 дней назад

    Qt cpp next

  • @VeeraDeekshitha
    @VeeraDeekshitha 20 дней назад

    Can u kindly provide source code

    • @myprojectideas
      @myprojectideas 20 дней назад

      github.com/myprojectideas/Travel-and-Tour-Website-Using-JavaScript

  • @VeeraDeekshitha
    @VeeraDeekshitha 20 дней назад

    Provide source code please🙏

    • @myprojectideas
      @myprojectideas 20 дней назад

      github.com/myprojectideas/fitness-application-using-javascript

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

    Hello Sir plz reply I need your help

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

    Great video as always 👍Thanks

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

    Hello My Project Ideas team, I am currently studying programming and I am training my skills. I have created the Java program but when I run it the database table is not showing anything. In the link that you have provided there is nothing about the database and in this video the part with the JPanel and table1 section is just mentioned. Could you please assist me to run successfully the Attendance Management System program? Please reply with email that I can contact you.

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

    Thanks this is what I need to extract video.

  • @IhsanUllah-pz4mn
    @IhsanUllah-pz4mn Месяц назад

    How.?

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

    Please send PPT

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

    I know this video is 2 years old by now… But is it possible to add tenths and hundredths place? I am using this to calculate the 0-60 of some cars in forza so I want it to be a little more accurate.

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

    How you write The types of variables, workares and internal tables. Like /iwbep/t_mgw_tech_pairs. Is any reference in signature to write or we have to copy from mpc class

  • @ZehraAKARSLAN-y1s
    @ZehraAKARSLAN-y1s Месяц назад

    very nice project. ✨✨😍😍 Thank yoouuuuu

  • @aslpaa.l
    @aslpaa.l Месяц назад

    Can i print PDF file to printer LOCL when PDF stroe in AL11. do you have the solution??

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

    npm create vite@latest is showing an error...pls suggest what to do

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

    Bro source code

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

    I love you.I dont see you but your voice is Sweet

  • @Sagar-ii2sf
    @Sagar-ii2sf Месяц назад

    Appreciate it, it was a clear overview, can I get the link to the spreadsheet that you were sharing, thank you

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

    puchase form is not working, Can you update repository and then let me know ?

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

    👍

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

    Bro I follow the steps from ChatGPT and somehow I face a problem with endpoint permission, something like that. I tried to work with ChatGPT but the only solution its giving me is to ask me to upgrade to the $5,000 per month developer package. I've already upgraded to the paid version of $100/mo but it still says there's a limitation. Any ideas? Can I engage your help directly with my bot? Do you do such service.

  • @MessiLionel-l4k
    @MessiLionel-l4k 2 месяца назад

    Please send code link bro

  • @ShilpiSingh-go6md
    @ShilpiSingh-go6md 2 месяца назад

    hey, I like this project can I do this on colab??

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

    Thanks for the guide. Is it possible to use one developer account to manage the DMs of multiple X accounts? I have like 10+ X accounts I need to manage daily. This includes checking for new DMs daily and responding to them with an automated message.

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

    How are SAP ABAP openings at your place?

  • @littlefireson-.1266
    @littlefireson-.1266 2 месяца назад

    thanks can chatgpt reply the comment automatically? not DM. thanks

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

      Yes, check this once: ruclips.net/video/8NBgVHQDX4w/видео.html&ab_channel=MyProjectIdeas

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

    why Mini cards are not showing on the web page

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

    is there any image of weather icon? If yes, where can I find it?

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

      From the source code

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

    thank you very much!

  • @fahadfahad-bx5ew
    @fahadfahad-bx5ew 2 месяца назад

    I didn't Understood a word, but I loved the video✅😍😻

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

      hahahah, thanks. Still would be happy to help.

  • @JagdeepSingh-ue1tm
    @JagdeepSingh-ue1tm 2 месяца назад

    Good to see this, Thanks!

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

    How can I add search functionality to it.

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

    I am trying this , I hope it still works

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

    Sir pls kindly reply my command

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

    I need your help in this project

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

    thanks for this tutorial but i feel like not learning much as you are typing everything page by page without pausing on each steps. A bit hard to get everything and where do you want to go. But thanks anyway

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

      Thanks for the feedback. This project were for people having basic idea of react already. Anyhow, we will work on improvement.