

adventJS - Retos de código para JavaScript cada día
source link: https://adventjs.dev/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

The coding challenges
Frequently Asked Questions
Although it has its roots in Catholicism, Advent has become a tradition where children got chocolate for 4 weeks, one per day, from 1 to 24 December. Here we adapt it to programming challenges.
Is this original?Since 2015, the Advent Of Code has been celebrated, which brings programming challenges every day. In this case, the challenges are designed to be solved with JavaScript/TypeScript.
How is the score calculated?Challenges are scored depending on the quality of your solution. We use different factors such as cyclomatic complexity and execution speed. The number of lines is not a determining factor.
Can I send different solutions to get a higher score?You could try as many solutions as you wish. The solution with the highest score will be the one stored.
Source is not available
Is it free?Yes, it is free. You can participate in the challenges without paying anything.
How can I contribute? How could I help?If you want to help us, share the project in your social networks so more people could participate.
Why have I lost points or I no longer have a score in a challenge?Solutions to challenges based on returning the results of the tests to pass will be removed if detected. Your solution must be a valid solution to the problem posed, not to pass the tests only.
Recommend
-
8
-
4
Prólogo A pergunta mais constante entre os desenvolvedores que estão querendo sair do nível Júnior para Pleno é "será que meu código tá uma merda?" ou "beleza isso funciona, mas como melhorar esse lixo?" e se questionar sobre...
-
6
Paracetamol.js💊| #17: ¿Qué imprime este código JavaScript?
-
7
¿Qué imprime este código JavaScript? const obj = { a: "one", b: "two", a: "three" }; console.log(obj); Enter fullscreen mode Exit fullscreen mode...
-
7
-
4
Explica este código JavaScript function sum(num1, num2 = num1) { console.log(num1 + num2) } sum(10) Enter fullscreen mode Exit fullscreen mode...
-
1
Discussion (1) Collapse Expand Author •
-
5
Explica este código JavaScript const arr = []; console.log(Array.isArray(arr)); // ?? Enter fullscreen mode Exit fullscreen mode
-
6
Explica este código JavaScript const nombre = "Alejandro"; console.log(nombre.split("")); console.log([...nombre]); console.log(Array.from(nombre)); Enter ful...
-
3
Explica este código JavaScript const test = { if:"Es un condicional", let: "Es una manera de declarar variables", for: "Es un bucle", }; console.log(test.for); //??
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK