-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input and output don't seem to match #30
Comments
Hi @david-santos ! The examples are correct. What is happening is that for every minute (from A to B) you need to calculate the average during for the last W minutes (W is window size and in this case is 10). So happens is the following
The 14 minutes are only the difference between the first and the last event. Hope this answers your question |
Hi @JoaoVasques Thanks for your input, but I'm sorry, I still don't understand. My interpretation of "all translations for the past 10 minutes" is that I have to pick up all translation events which timestamp is inside the interval [(now - 10 minutes), now]. But from your input, it seams more like it's a sliding window of 10 minutes. Is this correct? Thanks for your help. |
Hi @JoaoVasques Never mind my last comment. Thanks for your time. |
Hi @david-santos ! Great! Glad I could help. Good luck! JV |
In the README.md file there's an example of an input and an example of an output.
Are those two related?
In other words, for the provided input example, the application is supposed to write the provided output example?
The reasons why I ask this are:
Thanks for your help.
The text was updated successfully, but these errors were encountered: