Codility Lesson 11 - CountSemiprimes(JAVA)
https://app.codility.com/programmers/lessons/11-sieve_of_eratosthenes/count_semiprimes/ CountSemiprimes coding task - Learn to Code - Codility Count the semiprime numbers in the given range [a..b] app.codility.com 문제 - prime은 소수를 의미 : 2, 3, 5, 7, 11 ...( 1과 나 자신만이 약수인 수 ) - semiprime은 자연수 중 2개의 소수로 이루어진 수를 의미 : 4, 6, 9, 10, 14 ... - M개의 정수들로 이루어진 P, Q배열이 주어질 때, Query K는 1
더보기
Codility Lesson 10 - CountFactors(JAVA)
https://app.codility.com/programmers/lessons/10-prime_and_composite_numbers/count_factors/ CountFactors coding task - Learn to Code - Codility Count factors of given number n. app.codility.com 문제 - 양수 D는 N의 factor이다. - factor인 것은 N = D * M이 성립될 때를 의미한다. - 예시 : N = 24일 때 factor는 1,2,3,4,6,8,12,24 총 8개를 의미한다. return 8 제한조건 N is an integer within the range [1..2,147,483,647]. N은 1 ~ 2,147,483,647 사..
더보기