[TestDome] File Owners
Implement a group_by_owners function that:
More …Implement a group_by_owners function that:
More …HTTP에서 가장 많이 쓰는 메소드
More …The hiring team of Google aims to find 3 candidates who are great collectively. Each candidate has his or her ability expressed as an integer. 3 candidate are great collectively if product of their abilities is maximum. Find the maximum collective ability from the given pool of candidates.
More …Given an array of random numbers, Push all the zero’s of a given array to the end of the array. For example, if the given arrays is {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0}, it should be changed to {1, 9, 8, 4, 2, 7, 6, 0, 0, 0, 0}.
More …Given a binary string, count number of substrings that start and end with 1. For example, if the input string is “00100101”, then there are three substrings “1001”, “100101” and “101”.
More …Given an array with all elements greater than or equal to zero.Return the maximum product of two numbers possible.
More …Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
More …Given the string, check if it is a palindrome.
More …Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc.
More …Write a function that returns the sum of two numbers.
More …Given an array, we need to find that element whose value is equal to that of its index value.
More …Given a sorted array with possibly duplicate elements, the task is to find indexes of first and last occurrences of an element x in the given array.
More …코드 실행 시간 재기
More …Given a random set of numbers, Print them in sorted order.
More …