Calculate the Total Amount of Points using Java
The challenge
Our football team finished the championship. The result of each match look like “x:y”. Results of all matches are recorded …
Read Article →24 articles about interview development, tools, and best practices
Our football team finished the championship. The result of each match look like “x:y”. Results of all matches are recorded …
Read Article →Write a program that outputs the string representation of numbers from 1 to n.
But for multiples of three it should output “Fizz” …
Read Article →Write a function:
def solution(A)
that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does …
Read Article →Given an array nums
of integers, return how many of them contain an even number of digits.
Example 1:
Example 2:
Constraints:
1 …
A HashSet
is an unordered collection containing unique elements. It has the standard collection operations Add, Remove, Contains, …
In an N by N square grid, each cell is either empty (0) or blocked (1).
A clear path from top-left to bottom-right has length k
if and …
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s …
Read Article →Say you have an array prices
for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum …
Read Article →Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes.
Example: …
Read Article →Given an integer array nums
, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. …
Given a positive integer num
, output its complement number. The complement strategy is to flip the bits of its binary representation. …
A self-dividing number is a number that is divisible by every digit it contains.
For example, 128 is a self-dividing number because 128 % …