Organisation
This commit is contained in:
parent
e505364b47
commit
b28590a630
10
Notes/06.03.25.md
Normal file
10
Notes/06.03.25.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
## 2.2 Endrekursion
|
||||||
|
|
||||||
|
|
||||||
|
Keine endrekursion ->
|
||||||
|
|
||||||
|
1 + 2 + 3 + 4 + 5 + 6 + sum(...)
|
||||||
|
|
||||||
|
Endrekursion ->
|
||||||
|
|
||||||
|
sum (sum(sum(sum(sum(5)))))
|
25
Notes/17.02.25.md
Normal file
25
Notes/17.02.25.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
## Dekorator
|
||||||
|
Eine Funktion mit einer anderen Funktion als Parameter
|
||||||
|
|
||||||
|
```python
|
||||||
|
@DekoratorFunktion
|
||||||
|
def funktionXY(p1, p2):
|
||||||
|
pass
|
||||||
|
```
|
||||||
|
|
||||||
|
Args und Quarks
|
||||||
|
|
||||||
|
|
||||||
|
## Endrekursion
|
||||||
|
|
||||||
|
Der Rekursionsterm hat nur einen Funktionsaufruf. Arithmetik wird innerhalb der Argumente gemacht.
|
||||||
|
|
||||||
|
```python
|
||||||
|
|
||||||
|
# Bad example
|
||||||
|
return func(a, b) + 1
|
||||||
|
|
||||||
|
# Correct example
|
||||||
|
return func(a + 1, b)
|
||||||
|
```
|
||||||
|
|
9
Notes/20.02.25.md
Normal file
9
Notes/20.02.25.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
22.05.25 Projekt Präsentation
|
||||||
|
|
||||||
|
30.06.25 Projekt Abgabe
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Projekt
|
||||||
|
|
||||||
|
Forschungsfrage: Basically "Kann man Problem XY lösen durch Ansatz Z?"
|
Loading…
x
Reference in New Issue
Block a user