Consider a staircase of size n = 4:
1 | # |
Observe that its base and height are both equal to n, and the image is drawn using # symbols and spaces. The last line is not preceded by any spaces.
Write a program that prints a staircase of size n.
124 나라
가 있습니다. 124 나라에서는 10진법이 아닌 다음과 같은 자신들만의 규칙
으로 수를 표현합니다.
124 나라에는 자연수
만 존재합니다. 124 나라에는 모든 수를 표현할 때 1, 2, 4만 사용
합니다. 예를 들어서 124 나라에서 사용하는 숫자는 다음과 같이 변환됩니다.
Given an array of integers, calculate the fractions of its elements that are positive, negative, and are zeros. Print the decimal value of each fraction on a new line.
Given a square matrix, calculate the absolute difference between the sums of its diagonals.
For example, the square matrix is shown below:
1 | 1 2 3 |
The left-to-right diagonal = 1 + 5 + 9 = 15. The right to left diagonal = 3 + 5 + 9 = 17. Their absolute difference is |15 - 17| = 2.
Calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large.
수평 직선에 탑 N대를 세웠습니다.
모든 탑의 꼭대기에는 신호를 송/수신하는 장치
를 설치했습니다.
발사한 신호는 신호를 보낸 탑보다 높은 탑에서만 수신
합니다.
또한, 한 번 수신된 신호는 다른 탑으로 송신되지 않습니다.
Alice and Bob each created one problem for HackerRank. A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories: problem clarity, originality, and difficulty.
We define the rating for Alice’s challenge to be the triplet a = (a[0], a[1], a[2])
, and the rating for Bob’s challenge to be the triplet b = (b[0], b[1], b[2])
.
Your task is to find their comparison points by comparing a[0] with b[0], a[1] with b[1], and a[2] with b[2].
Given an array of integers, find the sum of its elements.
For example, if the array ar = [1, 2 ,3], 1 + 2 + 3 = 6
, so return 6.
선행 스킬이란 어떤 스킬을 배우기 전에 먼저 배워야 하는 스킬을 뜻합니다.
예를 들어 선행 스킬 순서가 스파크 → 라이트닝 볼트 → 썬더
일때, 썬더를 배우려면 먼저 라이트닝 볼트를 배워야 하고, 라이트닝 볼트를 배우려면 먼저 스파크를 배워야 합니다.
위 순서에 없는 다른 스킬(힐링 등)은 순서에 상관없이 배울 수 있습니다. 따라서 스파크 → 힐링 → 라이트닝 볼트 → 썬더
와 같은 스킬트리는 가능하지만, 썬더 → 스파크
나 라이트닝 볼트 → 스파크 → 힐링 → 썬더
와 같은 스킬트리는 불가능합니다.
선행 스킬 순서 skill과 유저들이 만든 스킬트리1를 담은 배열 skill_trees가 매개변수로 주어질 때, 가능한 스킬트리 개수를 return 하는 solution 함수를 작성해주세요.
Update your browser to view this website correctly. Update my browser now