205.1 Functional Programming

Lambda in the colors of the Scala logo (red)

---

Table of Contents

* [Lessons](#lessons) * [Lesson 1 - Evaluation](#lesson-1---evaluation) * [Lesson 2 - Higher order functions](#lesson-2---higher-order-functions) * [Lesson 3 - Data structures](#lesson-3---data-structures) * [Lesson 4 - Lists and pattern matching](#lesson-4---lists-and-pattern-matching) * [Assignments](#assignments) * [Assignment 1 - Square root](#assignment-1---square-root) * [Assignment 2 - Map-reduce](#assignment-2---map-reduce) * [Assignment 3 - Binary tree](#assignment-3---binary-tree) * [Assignment 4 - Lists and pattern matching](#assignment-4---lists-and-pattern-matching) --- ## Lessons ### Lesson 1 - Evaluation [Files](src/Lesson1) - Call by name / Call by value - State-less functions ### Lesson 2 - Higher order functions [Files](src/Lesson2) - Curryfication - Recursion - Tail recursion ### Lesson 3 - Data structures [Files](src/Lesson3) - Functional data structures - Binary tree - Operation precedence ### Lesson 4 - Lists and pattern matching [Files](src/Lesson4) - List - Pattern matching - Genericity ## Assignments ### Assignment 1 - Square root [Files](src/Assignment1) - Recursion - Newton - Tail recursion ### Assignment 2 - Map-reduce [Files](src/Assignment2) - Fibonacci - Sum - Map-reduce ### Assignment 3 - Binary tree [Files](src/Assignment3) - Int set - Binary tree - Union / intersection / foreach ### Assignment 4 - Lists and pattern matching [Files](src/Assignment4) - Expression interpreter - Binary tree - List functions - Predicates (any / every)