Krzysztof G.
Krzysztof G.
Do you recall any specific caveats? This is what I did when I was making the _fixed_ screenshot above https://github.com/gikf/freeCodeCamp/commit/edd6841eb2599426e6d3ea7cff58d425821b5881. Comparing it with how it's added elsewhere (https://github.com/freeCodeCamp/freeCodeCamp/blob/main/client/src/templates/Challenges/components/side-panel.tsx), other than...
Test is checking if solution in the file - https://github.com/freeCodeCamp/freeCodeCamp/blob/main/curriculum/challenges/english/18-project-euler/project-euler-problems-1-to-100/problem-78-coin-partitions.md#--solutions-- - passes tests for the challenge. The final test for Project Euler challenges usually require solution that's efficient. If it's...
It would be good to direct campers away from using parenthesis in simple conditions. Not because it's not valid Python, but because that's not a good case to use parenthesis.
That's due to changing `text.innerText` in `update` function, once that's changed to `text.innerHTML` the icon is displayed.
It's not in the codebase per se, but in this project https://github.com/freeCodeCamp/freeCodeCamp/blob/b95cc96913293808ce52caf2bf101a1ec99558d8/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a94114ce0b8918b487390f.md?plain=1#L223-L232
If it would be desired I think this could be taken care of as a demonstration of difference between `innerText` and `innerHTML`. Starting with the former that's not displayed as...
There's syntax error in the above code: ``` SyntaxError: unknown: Invalid shorthand property initializer. (10:49) 8 | const allCategories = { 9 | 299: { category: "Career Advice", className: "career"...
Hey @ElectricMolasses Thank you for opening this pull request. As there was different PR - #53329 - making all necessary changes, merged recently, we are going to close this one....
I used all the weird ones, when searching in VS Code in the project folder, among others: ``` ^
Reopening, problems with space after `else:` (edit and after `if xxx:`) appear to be present again. From different challenge - https://forum.freecodecamp.org/t/learn-recursion-by-solving-the-tower-of-hanoi-puzzle-step-39/670149. ``` python-test-evaluator.ts:158 TypeError: Cannot read properties of null (reading...