Given a list of points in 2D and a single reference point, find k nearest neighbors. No code required (iirc).
Software Engineer Interview Questions
Software Engineer Interview Questions
I Software engineer scrivono i programmi per progettare e sviluppare software informatici. I colloqui sono prettamente tecnici, quindi preparati ad affrontare problemi di programmazione e rompicapi matematici. Le domande specifiche che ti saranno poste dipenderanno dal tipo di posizione che stai cercando nell'ambito della programmazione. Prova a fare le dovute ricerche su una disciplina software specifica, come lo sviluppo si siti web, di applicazioni o di sistemi.
Domande tipiche dei colloqui per Software engineer e come rispondere
Domanda 1: Come descriveresti il tuo processo di programmazione?
Domanda 2: Quali linguaggi di programmazione conosci e preferisci?
Domanda 3: Parlami di un progetto che hai portato a termine con successo.
419,681 software engineer interview questions shared by candidates
given a large array of int return the length of the longest increasing(non-necessarily-adjacent) sub-sequence
Given an array of integers arranged in a way that they are first in a strictly increasing sequence and then after a certain point they are arranged in a strictly decreasing sequence. Find the max value in that array For ex: [3,6,8,13,20,35,33,30,21,17,14,2,1,-2] : 35 is the max in this array
Find the max number in an array between start and end. The function would like: findMaxbetween(start, end, array): return maxNumber
Write code to find the nth fibonacci number.
Coding the fibonacci algorithm.
Given a 5x5 board containing random characters, find all words that can be formed from consecutive adjacent (diagonals count) characters.
different between array and heap
Find the least common ancestor of 3+ nodes, in a binary tree wher the nodes only point to their parents. No child pointers.
Given an array and a sum, determine if any of the items add up to sum. Do a linear space solution and constant time solution.
Viewing 1701 - 1710 interview questions