Code Gyaan
Code Gyaan
  • Видео 88
  • Просмотров 51 505
Second Largest | GeeksForGeeks | DSA | Without sorting
Prob link- www.geeksforgeeks.org/problems/second-largest3735/1
"Second Largest element in array problem solution"
"GeeksforGeeks array problem solution in C++"
"Single loop approach to find second largest element"
"Two loop solution for second largest in array"
"How to solve second largest element problem"
"Efficient way to find second largest element in C++"
"GeeksforGeeks easy problem solution"
"C++ array problems for beginners"
"Second largest element GeeksforGeeks tutorial"
"Coding interview prep array problems"
GeeksforGeeks Second Largest
Second Largest element array
Array second largest solution
C++ array problems
GeeksforGeeks solution
GeeksforGeeks problem-solving
C++ interview questions
Data stru...
Просмотров: 8

Видео

LeetCode for Beginners 2024: Start Solving Like a Pro! | Easy Steps for Success
Просмотров 388Месяц назад
LeetCode for Beginners 2024: Start Solving Like a Pro! | Easy Steps for Success Description: Want to start solving LeetCode but don’t know where to begin? 🤔 In this video, I’ll guide you through the easiest and most effective way to kick off your LeetCode journey as a beginner in 2024. From choosing the right programming language (Python or C ?) to managing time, solving the right problems, and...
Host Your Django Project in 5 Mins! Simple Steps with 100% Guarantee | AWS Cloud Tutorial
Просмотров 466Месяц назад
🚀 Ready to launch your Django project in just 5 minutes? Follow this step-by-step guide for hosting your Django app on AWS EC2 with a 100% success guarantee! Each step is carefully explained to avoid confusion and ensure a successful website deployment using the robust and scalable AWS Cloud. 🔗 Visit AWS and sign up for a free tier account! Click here 👉 aws.amazon.com/free/ Project link - githu...
useClickOutside custom hook - React JS Interview Question - Frontend Machine Coding round interview
Просмотров 9995 месяцев назад
This video helps you in understanding and creating a custom hook where if user click outside of a given an element, The useClickOutside custom hook is a React hook used to detect clicks outside of a specified element. It involves creating a hook that uses a ref to track the element and adds an event listener to detect clicks outside of it. When a click outside is detected, a specified callback ...
useFirstRender custom hook - React JS Interview Question - Frontend Machine Coding round interview
Просмотров 5105 месяцев назад
This video explains how you can write a hook that tells a component whether it is a first render or not - useFirstRender The useFirstRender custom hook in React is used to determine if a component is rendering for the first time. It uses a useRef to track if the component has been rendered before. On the first render, it returns true, and on subsequent renders, it returns false. This is useful ...
Learn Django in 1 hr with Project
Просмотров 9065 месяцев назад
The Ultimate Django URL Shortener Project :- Welcome to our channel! In this video, we explore an exciting URL Shortener project created by Akash Bhaskar. This Python-based application simplifies long URLs into short, easy-to-share links. Whether you're a developer looking for a new project or just curious about URL shortening, this video will guide you through the setup, key features, and how ...
React js interview question (useTimeout hook)- front end machine coding round interview experience
Просмотров 8945 месяцев назад
This video explains how you can create your own useTimeout hook in react. The useTimeout custom hook in React provides a way to execute a function after a specified delay. It simplifies the use of setTimeout by managing the timer lifecycle, ensuring the timer is cleared when the component unmounts or the delay changes. This hook is useful for scenarios where you need to perform delayed actions ...
React interview quiz question - React re-render and misconceptions around it
Просмотров 355 месяцев назад
Let's understand when and how React components re-renders and solve a react interview quiz question around react component re-render cycle. State Changes Always Cause Re-renders: Not all state changes cause re-renders. React uses shallow comparison for state and props to determine if a re-render is necessary. Props Changes Always Trigger Re-renders: Similar to state, props changes trigger re-re...
how to approach and write any polyfill in JavaScript (ex: map polyfill)
Просмотров 975 месяцев назад
#javascript #javascriptinterview #frontenddeveloper A map polyfill in JavaScript provides functionality for environments that do not support the native Array.prototype.map method. It replicates the behavior of the map method, allowing you to apply a provided function to each element in an array, creating a new array with the results. The polyfill ensures compatibility across older browsers by a...
React JS Interview Questions ( useMemo Hook Polyfill )- Frontend Machine Coding Interview Experience
Просмотров 1456 месяцев назад
#JavascriptInterview #ReactInterview #reactjs The useMemo custom hook in React is designed to optimize performance by memoizing the result of a computation. It takes a function and a list of dependencies as arguments, and only re-computes the memoized value when one of the dependencies changes. This helps to avoid expensive calculations on every render, thus enhancing the efficiency of the comp...
React JS Interview Questions ( Custom useEffect Hook ) - Frontend Coding Interview Experience
Просмотров 1256 месяцев назад
A useEffect polyfill is typically used in React applications to ensure compatibility with older browsers or environments that do not support the useEffect hook natively. Here's a summary of how you can create a custom useEffect polyfill: Understanding useEffect: useEffect is a hook in React that allows you to perform side effects in function components. It replaces lifecycle methods like compon...
Quiz 113 - Javascript Arrays interview question #js #javascript #jsquiz
Просмотров 336 месяцев назад
#frontend #javascript #frontenddeveloper In JavaScript, array.push() is a method that is used to add one or more elements to the end of an array. Here's a breakdown of how it works: Syntax: array.push(element1, ..., elementN) array: The array you want to modify by adding elements to its end. element1, ..., elementN: One or more elements you want to add to the end of the array. Functionality: Th...
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Просмотров 336 месяцев назад
The key to getting this question right is that async functions return a new promise. console.log(a() b()): false. async functions always return a new promise, so even if a() had the exact same implementation as b() (or vice-versa), it would still return false. However, do note that a() returns the promise returned by f() wrapped in another promise, while b() returns the result of the promise re...
How to build a Simple Card Component in ReactJS - Beginner Friendly Tutorial
Просмотров 1196 месяцев назад
How to build a Simple Card Component in ReactJS - Beginner Friendly Tutorial
Pipe Function and Compose Function | Javascript Functional Programming Tutorial
Просмотров 896 месяцев назад
Pipe Function and Compose Function | Javascript Functional Programming Tutorial
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Просмотров 1886 месяцев назад
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Implement curry function in Javascript
Просмотров 3396 месяцев назад
Implement curry function in Javascript
Quiz 12 - Function Arguments #js #javascript #jsquiz
Просмотров 1106 месяцев назад
Quiz 12 - Function Arguments #js #javascript #jsquiz
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
Просмотров 616 месяцев назад
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
Просмотров 596 месяцев назад
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
Просмотров 446 месяцев назад
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
Просмотров 616 месяцев назад
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
Просмотров 686 месяцев назад
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
Просмотров 946 месяцев назад
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
Просмотров 846 месяцев назад
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
Просмотров 986 месяцев назад
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
Просмотров 1716 месяцев назад
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
Просмотров 796 месяцев назад
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
Просмотров 2796 месяцев назад
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
Leetcode 199 Binary Tree Right Side View using BFS approach
Просмотров 547 месяцев назад
Leetcode 199 Binary Tree Right Side View using BFS approach

Комментарии

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

    Nice video bro

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

    its working thanks ...................

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

    You are like amazing. I ran through tons of youtube videos for the correct guidance. I didn't receive such a clear explanation before. Man, keep working, you're going to rock

  • @prasadbhakare-i5l
    @prasadbhakare-i5l 23 дня назад

    Sir my project is too big that is not working

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

    Bhai sqlite ka data will be gone you said so how to migrate the data 😰?

  • @spaceboxcoder4139
    @spaceboxcoder4139 27 дней назад

    After closing the AWS tab from the chrome api don't work 😢, please help

    • @codegyaan
      @codegyaan 27 дней назад

      in my case it was working try searching on the web!

  • @amith9024
    @amith9024 28 дней назад

    👍❤

  • @Pdmkprd
    @Pdmkprd 28 дней назад

    Nicee

  • @deeplahiri5668
    @deeplahiri5668 28 дней назад

    Doing things, smart way💯

  • @pollipolka
    @pollipolka 28 дней назад

    thank you, it really helped<3

  • @nandeeshhiremath8623
    @nandeeshhiremath8623 28 дней назад

    Very Helpful ..

  • @saifvasta9787
    @saifvasta9787 29 дней назад

    Nice Please share me your email id for contacting you @saifvasta9787

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

    Hlo bro how can upload the django with media file plzz reply bro

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

      this project already uses media files like static images .

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

    Bro,🎉 Could you please upload a detailed video for! how to host a Django python project in Digital ocean.

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

      will try !

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

      @@codegyaan Vro! I hope you will Upload it💪👍

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

    It's hard to focus, I did rather choose to study you over the things you are teaching 🤭🤭👉👈

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

    Arey bhai waah❤

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

    Nice

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

    Good info bro. Can you tell, in which company did you get placed?

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

    💯💯

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

    Thanks bro 😊 . Love from KLSGIT ♥️

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

    My boy getting better day by day🎉 Proud watching you 🎉

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

    U r blushing man, and also explaining things well.

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

    Nicee🎉

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

    Good one bro🫡

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

    Very well explained💯

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

      Glad you liked it

  • @KrutikaPatil-w5z
    @KrutikaPatil-w5z Месяц назад

    Amazing keep going 🌟

  • @BabitaDevi-ku6pz
    @BabitaDevi-ku6pz Месяц назад

    God bless you

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

    Keep it up men.👍👍

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

    Big Ups to you my brother❤

  • @Shauryasingh-m4j
    @Shauryasingh-m4j Месяц назад

    I just wanted to say that your videos are absolutely awesome! You explain everything so well

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

      Glad you like them! Do share with your friends , help me get some subs !!!

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

    something went wrong

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

      Try to make it right

  • @Chandril-p2g
    @Chandril-p2g Месяц назад

    hello sir can you make a video from where you make the auto portfolio maker? i liked the website

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

      You can check it out on my GitHub-- github.com/akashbhaskar2011/Portfolio_generator.git

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

    nice but u have not covered the cleanup effect.

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

      Yes you need to return a function from an effect which will be executed on unmount.

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

    Can I deploy Django Rest framework in the same way?

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

      Give it a try

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

    which application you are using for py code

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

    bro have got error after save code do reload and open configuration in new tap got error something went wrong

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

      you can dm me if you want i can help you there .

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

    Thanks bro for this video, very helpful

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

      Glad it helped

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

    ty!

  • @user-san-chous
    @user-san-chous 3 месяца назад

    Why you didn't add "pc" to the title? Everyone can change on pc. People want to know how to change on phone

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

      There is no way on phone.

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

    Why django styles for admin panel not work?

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

      There are two ways to fix this. The ugly/hacky way is to add a specific static files mapping pointing at the django admin css folder: url: /static/admin path: /usr/local/lib/python3.10/dist-packages/django/contrib/admin/static/admin/ (or the path to the same folder inside your virtualenv, if you're using one) But that's an ugly hack, and you'll soon run into problems with the rest of your CSS not loading. The "proper" way to do it is to make sure you've got django.contrib.admin loaded in your INSTALLED_APPS, and then run collectstatic. There's a full guide to django static files here--help.pythonanywhere.com/pages/DjangoStaticFiles

  • @sir-stevenc.gwoleh.3672
    @sir-stevenc.gwoleh.3672 3 месяца назад

    why did you select python 3.10?

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

      Because my project was dependent on that

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

    Thanks , it was very helpful and I was able to host my website

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

      Glad it helped

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

    can we use arrow function as the inner function to return? Shouldn't we use use arrow function ideally as it will not have its own context

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

      Give it a try

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

    i got server error

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

      You must have missed some step

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

    hello sir, eralier i saw you video and deployed my website and it worked fine. but later when i updated my code and once againg deployed my code it didnot work. it was saying module not found error for the module that i didnot even use.

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

      Did it work or are you still facing the issue? No sir bro. Bro is fine.

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

    you saved me

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

    Will this method work for serving react frontend as html via Django views

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

      i have not tried that way , but give it a try . forum related to your querry- www.pythonanywhere.com/forums/topic/27473/

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

      @@codegyaan thanks I appreciate your help

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

    Thanks for this great walkthrough. Quick question though, why do we have to set the ref initially to null?

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

      We can set the cb function too initially as ref. Not an issue. Both are correct

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

    why the styles is not being displayed sir

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

    Not working. After deploying it is saying something went wrong.

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

      try taking help from Chatgpt a bit !