Our site is open source project. You can add your task to this site. It simple and it is the same as to take part on any other open source project on GitHub.

This site is using Jekyll. You can find out more info about Jekyll, as well as basic Jekyll usage documentation at jekyllrb.com

Jekyll intro - introduction to jekyll

Jekyll is using YAML for page methodata YAML Syntax

Jekyll is using Liqud as template engine Liquid for Designers

Creating GitHub user account

Creating pull request

Template for file of JavaScript problem

How to assign correct complexity and importance for the Javascript problem? Idea behind this is:

  • complexity shows how hard to understand the case.
  • importance shows how importarnt to understand the case. E.g. know how it works for 1+2+”aaa” is important, but know result of typeof(typeof(123)) is not.

Samples


This problem has:

  • 5 complexity - because it is pretty …
  • 2 importance - because it is pretty rear and wierd case.

Question: how many times method do() would be called?

 
 for (i = 0, j=3; i <j ; i++,j-- ) { 
    do();
 }
 

This problem has:

  • 2 complexity - because it is pretty simple to understand. No tricky tricks.
  • 5 importance - because it is pretty generic case. It is just normal for loop.

    Question: how many times method do() would be called?

for (i = 0; i < 1 ; i++) { 
    do();
}

Gene: docentmail / Nikita: 4luckynikita /