Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
While the user is airborne, keep booster=50. A user landing is determined by 7 time units having passed (or possibly when motion=0)
Do not heel when motion=0.
With these modifications I was able to create a solution that passes the tests.
The test does not match the spec. At t=8, motion=63 and distance=10.
According to the spec, if motion>50 and distance <= 10, that means the user is running, thus set booster=100. However, in the test, in this case, booster=50.
Further, at t=9, motion=0 and distance=0.
According to the spec, if motion[t] < motion[t-1] (falling edge), and distance <= 10, then set booster=0. However, in the test, booster=50.
The "small hint" in the description on the workshop should be in the spec, otherwise it's not possible to completely implement the spec.
Further, the spec has references to radar-out and radar-in. They are not on the board. :-)
Here is an implementation of the spec as written: However it is not pass the tests. https://i.imgur.com/k5OhggX.jpg
I'm pretty sure though, that with the "small hint" I can make a different implementation that does pass the tests. :-)