Pass Your Next Tech Interview With Valid Sudoku

Поділитися
Вставка
  • Опубліковано 22 сер 2024

КОМЕНТАРІ • 27

  • @FlanderDev
    @FlanderDev 2 роки тому +20

    Your video editing and explanation is awesome.
    I want to show them in school

    • @FlanderDev
      @FlanderDev 2 роки тому +4

      I want to thank the person who upvoted my comment, because now I can remember this video and watch it again!

  • @barssavas9938
    @barssavas9938 2 роки тому +7

    This is the most detailed and understand able explanation of this problem I have seen so far

  • @dbroche
    @dbroche 2 роки тому +2

    Great stuff man. You're really doing the community a service by putting out this content. Thanks for sharing!

  • @BlissAden
    @BlissAden 2 роки тому

    I have never played sudoku never could i understand the game when someone tried explaining it to me until now! thank you so much!

  • @shayshay8295
    @shayshay8295 7 місяців тому

    Animations are great and the explanation is easy to understand. Thank!

  • @ChrisCourses
    @ChrisCourses  2 роки тому +12

    #bringBackDislikes

  • @batchrocketproject4720
    @batchrocketproject4720 2 роки тому

    Chris, you must know many of us are trying to work out if your animations here were built on an html canvas. And yes, if so, we'd really love a walk-through video. Great work, thanks.

    • @brendon205
      @brendon205 2 роки тому

      I'm pretty sure he uses after effects to make animations for the videos

  • @seth_king_codes
    @seth_king_codes Рік тому

    best video ive seen on this so far

  • @3WL2
    @3WL2 2 роки тому

    Thank you for this man, this video really resonated with me. I'm fairly comfortable with 2d arrays but even still I felt enlightened a bit after watching.

  • @thiagow777
    @thiagow777 Рік тому

    best video solution i found in leetcoding

  • @Wansi
    @Wansi Рік тому

    This is beautiful, thanks man

  • @fablouping5292
    @fablouping5292 2 роки тому

    Amazing animations. Make it very clear.

  • @iUmerFarooq
    @iUmerFarooq 2 роки тому

    The presentation is superb amazing.

  • @HigkeyRegarded007
    @HigkeyRegarded007 2 роки тому

    The presentation for this was amazing and concise. Seriously, thank you so much. Not prepping for interviews but this is my second bootcamp project. The visual aids helped a lot in seeing what is going on.

  • @serial_coder
    @serial_coder 6 місяців тому

    But how do I think of such formula??
    Anyway you explained so well just in 6 minutes.

  • @prgomezwarrior
    @prgomezwarrior 2 роки тому

    Excellent!!!!!!

  • @js-swift
    @js-swift 2 роки тому

    great one 🔥

  • @lipi6535
    @lipi6535 2 роки тому

    You are too good at everything. 😁

  • @fajarprayoga9565
    @fajarprayoga9565 Рік тому

    Great brooo, thansk

  • @inaction_bronson
    @inaction_bronson 2 роки тому

    Best in the game.

  • @AwkworldStudios
    @AwkworldStudios 2 роки тому +1

    Great, now do it using recursion 😉

    • @krzysztofsobota2144
      @krzysztofsobota2144 Рік тому

      It's not so hard to make this - look at my answer from 4 months ago and you will see how this numbers are properly located inside the cells (I wrote it row by row). There is specific order of putting these numbers.

  • @krzysztofsobota2144
    @krzysztofsobota2144 Рік тому

    This is not real sudoku - there are repeated digits (1, 5, 7) in main (long) diagonals. In your example perfect Sudoku is:
    Row 1: 534 678 912
    Row 2: 912 534 678
    Row 3: 678 912 534
    Row 4: 345 786 129
    Row 5: 129 345 786
    Row 6: 786 129 345
    Row 7: 453 867 291
    Row 8: 291 453 867
    Row 9: 867 291 453
    It is easy to make this in (for example) Python/JS code.

  • @stagesol
    @stagesol 2 роки тому

    Why does anyone apply for a programmer job who doesn't know what a 2darray is and how to traverse it?

    • @ChrisCourses
      @ChrisCourses  2 роки тому +7

      Might be because common web development such as centering a div has zero to do with traversing 2D arrays. If I were hiring, I'd choose the person who can center a div-big name tech companies just use algorithm quizzes for their process unfortunately.