Filter, Map, Reduce, CompactMap, FlatMap - Swift - iOS Dev Interview Questions

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

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

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

    The way you explained trailing closures in this made something finally click in my brain! I have no idea how it was able to confuse me for so long - it’s just so simple. Thank you!

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

      I remember that feeling! Happy to help.

  • @sergiovinhal5934
    @sergiovinhal5934 2 หลายเดือนก่อน +2

    Excellent video . Thank you Sean .

    • @seanallen
      @seanallen  2 หลายเดือนก่อน

      Glad you enjoyed it

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

    You can use keypaths with these high level functions. Makes for great readability!

  • @Spacer-l3j
    @Spacer-l3j 8 หลายเดือนก่อน +1

    Finally this video clicked for me... Simple examples makes you understand... i have watched 3 other videos across TH-cam to understand high order functions but they had stupid azz examples i couldn't understand a freking thing...

    • @seanallen
      @seanallen  8 หลายเดือนก่อน

      Glad it finally clicked!

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

    Never knew about a reduce, just learned it today. Thanks, sean. I've been doing it the hard way all this time.

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

    Thanks for the shares. You have many followers from Turkey. Even though I watch with automatic subtitles, I learn a lot.

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

    Excellent explanation, as usual. Thank you!

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

    Thank you so much for putting this together! Especially for map and reduce!

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

    smart explanation, clear language! very efficient.. very.. ! 👏🏻

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

    Big Love Sean, THANK YOU, you and Afraz are the best

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

    Great job Sean, before this I really got stuck which one is

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

    Great explanations, really appreciate it.
    A few reactions if you're open to such things:
    1. Using Double for currency values will work 99.99% of the time. It's that .01% that will drive you crazy.
    2. I wouldn't use the for loop as a tool to explain filter/map/reduce. Your original explanation is great and more than sufficient. Adding discussion of the for loop way of calculating will confuse a certain percent of viewers, and slow down almost everyone.

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

      I disagree. He’s right in bringing up the for loop for comparisons, since that is the whole point on declarative programming: streamline the uglier, more verbose imperative style

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

    You are amazing!

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

      I appreciate the kind words :)

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

    Cool video. Learned some new things today. Thank you!

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

    Great explanations for these

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

    Amazing you are the best,Thanks for being one of the best is swift 👍

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

      Thanks for the kind words, Ahmed.

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

    How about Zip? How does it work and when is useful?

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

    Amazing !

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

    Thanks

  • @paulcristo
    @paulcristo 9 หลายเดือนก่อน +1

    Thanks.

    • @seanallen
      @seanallen  9 หลายเดือนก่อน

      Happy to help!

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

    Thanks Sean!!

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

    cool vid, but I believe that $0 and $1 when reducing does not refer to "this and next iteration", but to "current result and current iteration" - isn't that right? :) because here you keep handling constantly "accumulating current result" with each collection's element.

    • @Jacob-rm7vo
      @Jacob-rm7vo ปีที่แล้ว +1

      Yes that is how I understood reduce, even in other languages. It would accumulate - add the first and second, then add the third to that value. I think of $0 meaning lhs (left hand side) and $1 rhs

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

      @@Jacob-rm7vo exactly. Filter iterates through the array, doing this:
      sumSoFar += object.numberToAdd
      So $0 is the lhs, and $1 is the object on the rhs. This is why Sean needs to write $1.users and not $0.users. $0 is an Int already.

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

    Awesome 🎉
    Is there any plan for portfolio review? I’d love to hear your opinion about my website.
    Thank you in advance 😊

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

    Thanks!)

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

    nice

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

    69th like

  • @tigran.zakaryan
    @tigran.zakaryan ปีที่แล้ว

    thank you!