updated README

This commit is contained in:
Louis Heredero 2025-03-11 19:02:12 +01:00
parent e9b68c0913
commit b18b92fb0b
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7

View File

@ -13,10 +13,12 @@
* [Lesson 1 - Evaluation](#lesson-1---evaluation) * [Lesson 1 - Evaluation](#lesson-1---evaluation)
* [Lesson 2 - Higher order functions](#lesson-2---higher-order-functions) * [Lesson 2 - Higher order functions](#lesson-2---higher-order-functions)
* [Lesson 3 - Data structures](#lesson-3---data-structures) * [Lesson 3 - Data structures](#lesson-3---data-structures)
* [Lesson 4 - Lists and pattern matching](#lesson-4---lists-and-pattern-matching)
* [Assignments](#assignments) * [Assignments](#assignments)
* [Assignment 1 - Square root](#assignment-1---square-root) * [Assignment 1 - Square root](#assignment-1---square-root)
* [Assignment 2 - Map-reduce](#assignment-2---map-reduce) * [Assignment 2 - Map-reduce](#assignment-2---map-reduce)
* [Assignment 3 - Binary tree](#assignment-3---binary-tree) * [Assignment 3 - Binary tree](#assignment-3---binary-tree)
* [Assignment 4 - Lists and pattern matching](#assignment-4---lists-and-pattern-matching)
<!-- TOC --> <!-- TOC -->
@ -41,6 +43,12 @@
- Binary tree - Binary tree
- Operation precedence - Operation precedence
### Lesson 4 - Lists and pattern matching
[Files](src/Lesson4)
- List
- Pattern matching
- Genericity
## Assignments ## Assignments
### Assignment 1 - Square root ### Assignment 1 - Square root
@ -60,3 +68,10 @@
- Int set - Int set
- Binary tree - Binary tree
- Union / intersection / foreach - Union / intersection / foreach
### Assignment 4 - Lists and pattern matching
[Files](src/Assignment4)
- Expression interpreter
- Binary tree
- List functions
- Predicates (any / every)