Problem Calculate the number of loans issued by the Regional offices for each business week in the period from 38 […]
Tag: interview-questions
Ad-exchange bidder exercise for a job interview
Problem This was a straightforward test for a junior level position. The README.md estimated completion should take 45 minutes. Provided […]
The intersection of two polygons in C++
Problem I implemented the intersection of two (convex) polygons in C++. It finds the polygon in the intersection like in […]
Dijkstra algorithm implementation in Swift
Problem I’ve implemented Dijkstra’s algorithm to find the minimum path between two nodes. class Node : CustomStringConvertible { // unique […]
Finding if the tree is balanced or not
Problem Can someone please review my code and let me know if there are some bugs or possible improvements? /** […]
FizzBuzz Implementation in Java
Problem We are looking for answers that provide insightful observations about the code in the question. Answers that consist of […]
Roman to Arabic numerals converter in Javascript
Problem I was given some homework as a technical test by a company I wanted to work for… Which I […]
React Native screen to add a city to a weather app using a REST API
Problem In a recruitment process, the company gives me a project to do in react native. I finished all the […]
Find maximum in sorted and rotated array
Problem This is an interview question. A sorted rotated array is a sorted array which was rotated 0 or more […]
Total number of stops for an elevator to serve certain people
Problem I have seen this question asked around a bit, such as this Code Review question in Java: Write an […]