Krzysztof G.
Krzysztof G.
Thanks for opening this issue. This looks something that can be fixed by "first time" code contributors to this repository. Here are the files that you should be looking at...
Hey @Sayalikukkar, @thejon07 We typically do not assign issues. Instead, we accept the first pull request that comprehensively solves the issue. Issues labelled with `help wanted` or `first timers only`...
I've noticed couple more peculiarities regarding this, both are at the 2nd step, after checking the code, when hover is not working: - After focusing different window, hover will start...
Couldn't it be checked if `cid` and `price` are declared and can be reassigned instead - basically to try reassign them? The importance of their value before running tests is...
For example, for `price`: ```javascript price = 10; assert.strictEqual(price, 10); ``` If `price` is not declared, or declared with `const`, this will not pass.
Ouch, sorry, that's likely caused by user code being transformed, so `const` ends up transformed to `var`. But `price` is then correctly being changed in further tests, isn't it?
Second test also will need to be changed accordingly.
@moT01, Yeah, any concerns?
🚀 As noted in comment this is based on https://github.com/ByteThisCoding/project-euler/blob/master/problems/0084/0084.ts. It does all the heavy lifting as far as the math behind it.
Text refers to potential situation when both assignments are using `let`, ie: ```javascript let programmer = "Naomi"; let programmer = "CamperChan"; ``` Depending on where exactly both are used, this...