Code Examples
A repository of 155 code examples for BeepBeep
episodes.MaxEpisode Class Reference

Computes the maximum value of all episodes in each day. More...

Static Public Member Functions

static void main (String[] args)
 

Detailed Description

Computes the maximum value of all episodes in each day.

For example, given this stream of pressure events:

✸ ↑ 151 142 ↓ ↑ 149 148 144 ↓ ✸ ↑ 150 142 ↓ ✸

the processor should output 151 (maximum value of first day) followed by 150 (maximum value of second day). Graphically, this can be represented by the following processor chain:

Processor chain
Author
Sylvain Hallé

Definition at line 54 of file MaxEpisode.java.


The documentation for this class was generated from the following file: