Accompanies Miran Lipovaca's "Learn You a Haskell for Great Good!"
Пікірлер: 19
@NeaLSeN9 жыл бұрын
You seriously have the best tutorial for haskell that i could find on youtube. To the point. Not boring and very interesting. And u follow the book.
@PubliusRutiliusLupus9 жыл бұрын
I am like Haskell's type system, in that I am both extremely sophisticated and very lazy.
@TheDevilshire8 жыл бұрын
I couldn't help stop watching at 5:13
@davidclevenger20144 жыл бұрын
How is tail constant time if lists are singly-linked? Would you not need to traverse to the tail to now the tail? Constant time would make sense for lists that are doubly-linked.
@TrueMischief10 жыл бұрын
Thanks for the videos and nice lost reference
@patrickdiloreto905610 жыл бұрын
[4, 8, 15, 16, 23, 42] that reminds me Lost numbers.
@malkdk10 жыл бұрын
7:26 - LOL!
@DrewLeon7 жыл бұрын
Excellent!
@flaviusone11 жыл бұрын
Great tutorials, thanks :D!
@badwolf81124 жыл бұрын
Thank you for stopping the list from taking over the world
@luc61445 жыл бұрын
Those numbers are dangerous.....better make sure you enter them on time so the Swan doesn't blow
@bahartehranian4318 жыл бұрын
when i only type "tail" it gives me a type error but when i type "tail numbers" it works
@CliffStamp7 жыл бұрын
tail is a function so if you only type tail into ghci it will complain because it does not know how to display a function on the screen.
@gracerevolution78138 жыл бұрын
Thankyou for this :=)
@IzanBF7 жыл бұрын
Sorry but i'm sure length list is constant time, i'm sure the implementation contains an element counter variable.
@saeedbaig42496 жыл бұрын
You would think so, but apparently not: wiki.haskell.org/How_to_work_on_lists#Slower_operations `length' apparently gets slower the larger the list is
@nkedemgildas32812 жыл бұрын
Good
@zaybali20175 жыл бұрын
head tail reverse length max min sum products Booleans- l null- return true if list is empty else false ++ - return both lists concatenated tips and tricks- (length [1,2,3,4])+1 - return 5 345 tail listname- will retrurn a list clone of yourlist but 345 will replace the head
@兴宣大院君-h4s8 жыл бұрын
Learn some basic data structures knowledge from the Haskell course lol