in reply to Re^4: [OT:] Is this Curriculum right?
in thread [OT:] Is this Curriculum right?
I guess the point is what they think a vector is. I guess they think it like this (in R):
v<-c(1:3) typeof(v) length(v) min(v) max(v) median(v) mean(v) append(v, 4) # shuffle(v) # sort (v)
This yields in an interactive R session:
[1] "integer" [1] 3 [1] 1 [1] 3 [1] 2 [1] 2 [1] 1 2 3 4
Now the kids are forced to write down such stuff in German Pseudocode - with Umlauts. As we are in Germany. No kidding. Plus some UML diagrams. Just to come back to the roots. Or the original question. Now you can guess the next step? Best regards, Karl.
Regards, Karl
«The Crux of the Biscuit is the Apostrophe»
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: [OT:] Is this Curriculum right?
by choroba (Cardinal) on Nov 29, 2021 at 20:26 UTC | |
Re^6: [OT:] Is this Curriculum right?
by LanX (Saint) on Nov 29, 2021 at 20:44 UTC | |
by eyepopslikeamosquito (Archbishop) on Nov 30, 2021 at 04:50 UTC | |
by LanX (Saint) on Nov 30, 2021 at 09:37 UTC | |
Re^6: [OT:] Is this Curriculum right?
by karlgoethebier (Abbot) on Nov 30, 2021 at 00:09 UTC |