Learn Haskell

Updated on: Tuesday 6 Jul 2021, 07:39 am

Created on: Tuesday 6 Jul 2021, 07:36 am

Tally23

Likes

userIconfybonprog

JunJulAugSepOctNovDecJanFebMarAprMayMonWedFri

My Category:  Coding Project

tags:  functional programming, haskell


Description

Learn Haskell via Future Learn Course

Summary Notes

 

Learning Haskell

via free Future Learn Course https://www.futurelearn.com/courses/functional-programming-haskell/9/todo/106941

Progress Records/Comments

userIconfybonprog Wed 11 Aug 2021, 09:30 pm +5

Progress Record

 

Spent 1 hour trying to understand below code, but finally got it.

filter pred lst

| null lst = []

| otherwise = if pred x

then x:filter pred xs

else filter pred xs

where x:xs=lst


userIconfybonprog Sun 8 Aug 2021, 04:24 pm +2

Progress Record

 

spent 30 mins trying to understand the code below.

leng :: [a] -> Int

leng [] = 0

leng (x:xs) = 1 + length xs

I understand it now.

userIconfybonprog Tue 3 Aug 2021, 08:37 pm +1

Progress Record

 

spent 20 mins trying to understand some haskell code from the tutorial.

userIconfybonprog Mon 2 Aug 2021, 10:08 pm +1

Progress Record

 

spent 15 mins learning

userIconfybonprog Sun 1 Aug 2021, 10:45 pm +3

Progress Record

 

Spent 1 hour.

userIconfybonprog Thu 29 Jul 2021, 07:58 am +2

Progress Record

 

Spent 10-15mins week 2 lessons

userIconfybonprog Wed 28 Jul 2021, 09:35 pm +2

Progress Record

 

started week 2 lessons

userIconfybonprog Mon 26 Jul 2021, 07:46 am +2

Progress Record

 

finished week 1 finally after holiday.

userIconfybonprog Tue 6 Jul 2021, 07:38 am +5

Progress Record

 

Week 1 lessons 1.1-1.6 complete

Latest ghci installed on machine