added README
This commit is contained in:
parent
f4d0c9adfa
commit
7a6168dd50
58
README.md
Normal file
58
README.md
Normal file
@ -0,0 +1,58 @@
|
||||
<h1>205.1 Functional Programming</h1>
|
||||
|
||||
<p align="center">
|
||||
<img src="icon.svg" width="80" alt="Lambda in the colors of the Scala logo (red)">
|
||||
</p>
|
||||
|
||||
---
|
||||
<h2>Table of Contents</h2>
|
||||
<!-- TOC -->
|
||||
* [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)
|
||||
* [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)
|
||||
<!-- TOC -->
|
||||
---
|
||||
|
||||
## 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
|
||||
|
||||
## 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
|
126
icon.svg
Normal file
126
icon.svg
Normal file
@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="128"
|
||||
height="128"
|
||||
viewBox="0 0 128 128"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
sodipodi:docname="icon.svg"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
inkscape:export-filename="icon.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.7798541"
|
||||
inkscape:cx="63.928949"
|
||||
inkscape:cy="68.773362"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
<inkscape:grid
|
||||
id="grid3"
|
||||
units="px"
|
||||
originx="0"
|
||||
originy="0"
|
||||
spacingx="1"
|
||||
spacingy="1"
|
||||
empcolor="#0099e5"
|
||||
empopacity="0.30196078"
|
||||
color="#0099e5"
|
||||
opacity="0.14901961"
|
||||
empspacing="16"
|
||||
enabled="true"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs1">
|
||||
<linearGradient
|
||||
id="linearGradient10"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#4e4e4e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop10" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop11" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#c40000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8" />
|
||||
<stop
|
||||
style="stop-color:#ff0000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
x="37.92537"
|
||||
y="44.042365"
|
||||
width="295.5732"
|
||||
height="25.93606"
|
||||
id="rect1" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8"
|
||||
id="linearGradient9"
|
||||
x1="18.422545"
|
||||
y1="64"
|
||||
x2="109.57747"
|
||||
y2="64"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1.999545,-1)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10"
|
||||
id="linearGradient11"
|
||||
x1="18.422545"
|
||||
y1="64"
|
||||
x2="109.57746"
|
||||
y2="64"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g11"
|
||||
transform="matrix(1.2023042,0,0,1.2023042,-11.745442,-12.346318)">
|
||||
<path
|
||||
style="fill:url(#linearGradient11);fill-opacity:1;stroke:none;stroke-width:1.99937;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 60.310857,20 H 34.422545 v 16 h 16 l 8,16 -40,48 H 37.503412 L 65.57787,66.310651 86.422545,108 109.57746,96.422544 l -7.15534,-14.310651 -8.844251,4.42213 z"
|
||||
id="path3"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient9);stroke:none;stroke-width:1.99937;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.311312,19 H 32.423 v 16 h 16 l 8,16 -40,48 H 35.503867 L 63.578325,65.310651 84.423,107 l 23.15493,-11.577456 -7.15534,-14.310651 -8.84427,4.42213 z"
|
||||
id="path3-7"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
Loading…
x
Reference in New Issue
Block a user