Implement java's pow function
Software Interview Questions
551,386 software interview questions shared by candidates
Isomorphic strings LCA String to Integer
What is a restful api?
Leetcode questions, and behavioral questions with management.
Can you inherit from multiple classes?
You are given an array of integers. What is the fastest way to generate an array where every integer at an index in the array is the product of all numbers in the given array except the number at that given index?
Given an array of n numbers, return an array ans such that ans[i] contains the product of all elements in array except array[i]. Ex. array = {1, 7, 4, 3}, ans = {84, 12, 21, 28}. Do this in O(n) time and without using division.
Write a function that takes in an integer N and returns the sum for all numbers between 1 to N excluding multiples of 3 and 5.
Right a method that takes an int and an array and rotates the array right n times. Give an answer with constant space and linear time.
Write a tail recursive version of the map function
Viewing 2971 - 2980 interview questions