Some minor changes here and there
This commit is contained in:
parent
2ed831c3b8
commit
321c590180
@ -1,7 +1,8 @@
|
|||||||
<img src="images/logo_fachschaft_white.png" alt="Fachschaftslogo" style="border:0">
|
<img src="images/logo_fachschaft_white.png" alt="Fachschaftslogo" style="border:none">
|
||||||
<!-- .element class="plain" style="background: transparent; height: 20rem; " -->
|
<!-- .element class="plain" style="background: transparent; height: 20rem; " -->
|
||||||
|
|
||||||
## Pseudocode-Quiz
|
## Popkulturkode:
|
||||||
|
### Das Pseudocode-Quiz
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<span style="padding-right: 1rem;">Anika Amma</span>
|
<span style="padding-right: 1rem;">Anika Amma</span>
|
||||||
<span style="padding-right: 1rem;">Anna Sauer</span>
|
<span style="padding-right: 1rem;">Anna Sauer</span>
|
||||||
@ -9,14 +10,16 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## This is how this works:
|
## Here is how this works:
|
||||||
|
* 2 teams of 3 players compete
|
||||||
* 5 rounds with 7 questions
|
* 5 rounds with 7 questions
|
||||||
* each question: a pseudocode snippet that represents a film / TV show / book
|
* each question: a pseudocode snippet representing a film / TV show / book
|
||||||
* it may allude to the title, the plot or famous lines
|
* it may allude to the title, the plot or famous lines
|
||||||
* the group that guesses the represented story first gets a point
|
* the team that guesses the represented story first gets a point
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Let's see an example:
|
||||||
```
|
```
|
||||||
protagonist = new Heroine()
|
protagonist = new Heroine()
|
||||||
charming = new Prince()
|
charming = new Prince()
|
||||||
@ -24,3 +27,14 @@ while not prince.comes_along():
|
|||||||
protagonist.hair_length++
|
protagonist.hair_length++
|
||||||
```
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="two-columns">
|
||||||
|
<div class="column" style="width:60%"><img src="images/00/rapunzel.jpg" /> </div>
|
||||||
|
<div class="column" style="width:40%">Rapunzel<br/>
|
||||||
|
<p class="source">
|
||||||
|
source: https://commons.wikimedia.org/wiki/File:Stamps_of_Germany_(DDR)_
|
||||||
|
1978,_MiNr_2383.jpg
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|||||||
@ -123,11 +123,12 @@ let it = 'go';
|
|||||||
---
|
---
|
||||||
|
|
||||||
```
|
```
|
||||||
(1) #E6E6E6 (2) #B8B8B8 (3) #BDBDBD
|
(1) #E6E6E6 (2) #B8B8B8 (3) #BDBDB9
|
||||||
(4) #A4A4A4 (5) #848484 (6) #585858
|
(4) #A4A4A4 (5) #848484 (6) #585858
|
||||||
(7) #424242 (8) #6E6E6E (9) #2E2E2E
|
(7) #424242 (8) #6E6E6E (9) #2E2E2E
|
||||||
(10) #151515 (11) #7D7D82 (12) #3D3C44
|
(10) #151515 (11) #7D7D82 (12) #3D3C44
|
||||||
(13) #3B3A3E ... (49) #5B585A (50) #596159
|
(13) #3B3A3E ...
|
||||||
|
... (49) #5B585A (50) #596159
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@ -43,7 +43,7 @@ hero.has_hairy_feet() = True
|
|||||||
|
|
||||||
<!-- alternative Beschreibung -->
|
<!-- alternative Beschreibung -->
|
||||||
```
|
```
|
||||||
hero.goal = "Destroy the tiny piece of jewellery"
|
hero.goal = destroy(jewelery)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
@ -95,7 +95,8 @@ hero.suffer();
|
|||||||
|
|
||||||
```
|
```
|
||||||
for each person in story:
|
for each person in story:
|
||||||
person.goal = "Sit on the most uncomfortable chair in the world"
|
person.goal =
|
||||||
|
"Sit on the most uncomfortable chair in the world"
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@ -104,7 +104,7 @@ if (whatCounter > 3) {
|
|||||||
|
|
||||||
```
|
```
|
||||||
lives_in _forest(b)
|
lives_in _forest(b)
|
||||||
dies(parent_of(b) AND mother_of(b))
|
dies(mother_of(b))
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
@ -136,6 +136,11 @@ if (hero.dies()) {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
raise SizeException("the inside is bigger than the outside")
|
||||||
|
```
|
||||||
|
<!-- .element class="fragment" -->
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- empty slide -->
|
<!-- empty slide -->
|
||||||
@ -192,12 +197,17 @@ while (true) {
|
|||||||
---
|
---
|
||||||
|
|
||||||
```
|
```
|
||||||
is_palindrome(bandname)
|
|
||||||
> True
|
|
||||||
len(bandname)
|
len(bandname)
|
||||||
> 4
|
> 4
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
is_palindrome(bandname)
|
||||||
|
> True
|
||||||
|
```
|
||||||
|
<!-- .element class="fragment" -->
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- empty slide -->
|
<!-- empty slide -->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user