clousee, debounce , curry function
Fullstack Developer Interview Questions
4,005 fullstack developer interview questions shared by candidates
Are you familiar with the Model-View-Controller architecture?
to generate cache using JS
I was asked questions about algorithms, complexity and software design trough out the whole process. One part was dedicated to review of the home assignment.
You are given a Maze in the size of NxM represented by a boolean matrix where 0 is empty, and 1 is blocked (wall). 1. Code a function 'solve1', which returns true if there's a path from points 's' (start) to 'e' (end) which passes only through zeros. It should return 'false' if there is no possible path. Possible movements: up, right, down, left (no diagonals) For example, this maze should return true: s 1 1 1 0 0 0 1 1 1 e 1 1 1 1 1 And this one should return false: s 1 1 1 0 1 0 1 1 1 e 1 1 1 1 1
Leetcode Decode String. Number 394
C'est quoi la différence entre une interface et une classe abstraite ?
1.valid parantesis with a twist 2. possible subsets from a group 3. packmen i think
1. valid-parentheses 2.power set 3.pac-man 4.find island + extra
find islands in a matrix
Viewing 1841 - 1850 interview questions