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
Javascript Developer Interview Questions
1,680 javascript developer interview questions shared by candidates
Map and slice Ssr and csr
Explain when to use usestate, useEffect, useContext, useMemo, useCallback, useRef and the difference between them
Can you tell me what prop drilling is?
What projects have you worked on in the past?
1) create a table with virtual scroll 2) closures, this, call,apply, bind etc asked to write some code and gave code snippets 3) React , redux, routing, asked to write code completely.
What is hoisting in javascript
What was mine experience in front-end projects?
How to show list of contacts in browser? Which technology I should use, what data will be necessary from back-end, how would I implement this functionality using selected technologies?
how to cut cake in 8 equal pieces under 3 tries to slice
Viewing 871 - 880 interview questions