Given an array with 5 strings find the substring without using inbuilt functions.
Fullstack Developer Interview Questions
2,859 fullstack developer interview questions shared by candidates
What are the different work processes of a developer?
How many years have you been working with Java? Have you work with Spring boot? Have you work with React? Where are you from? Where did you hear about us?
Was asked to build a recursive function that find path from a to b in a maze and a few more technical questions
how could you code a system that counts roman numerals
clousee, debounce , curry function
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
Viewing 1331 - 1340 interview questions