일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- for문
- Algorithms
- 최강의 인생
- join
- Hackerrank
- JavaScript
- MySQL
- 블록체인
- Where
- select
- Developer_JoyKim
- 코딩테스트
- 코딩공부
- Programmers
- 정규표현식
- 재귀함수
- 프로그래머스
- array.slice()
- array.push()
- 개발자의 책장
- 알고리즘
- SQL
- array
- 코플릿
- 개발자_조이킴
- 배열
- 코드스테이츠
- node.js
- 역행자
- 자바스크립트
- Today
- Total
목록Hackerrank (52)
CodingSpace

Problem. Implementation - Cats and a Mouse Link. https://www.hackerrank.com/challenges/cats-and-a-mouse/problem?isFullScreen=true Cats and a Mouse | HackerRank Which cat will catch the mouse first? www.hackerrank.com Description. Two cats and a mouse are at various positions on a line. You will be given their starting positions. Your task is to determine which cat will reach the mouse first, ass..

Problem. Implementation - Number Line Jumps Link. https://www.hackerrank.com/challenges/kangaroo/problem?isFullScreen=true Number Line Jumps | HackerRank Can two kangaroo meet after making the same number of jumps? www.hackerrank.com Description. You are choreographing a circus show with various animals. For one act, you are given two kangaroos on a number line ready to jump in the positive dire..

Problem. Warmup - Grading Students Link. https://www.hackerrank.com/challenges/grading/problem?isFullScreen=true Grading Students | HackerRank Round student grades according to Sam's rules. www.hackerrank.com Description. HackerLand University has the following grading policy: Every student receives a grade in the inclusive range from 0 to 100. Any grade less than 40 is a failing grade. Sam is a..

Problem. Warmup - Time Conversion Link. https://www.hackerrank.com/challenges/mini-max-sum/problem?isFullScreen=true Description. Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers. Key Point. My Answer. 'us..

Problem. Warmup - Birthday Cake Candles Link. https://www.hackerrank.com/challenges/birthday-cake-candles/problem?isFullScreen=true Plus Minus | HackerRank Calculate the fraction of positive, negative and zero values in an array. www.hackerrank.com Description. You are in charge of the cake for a child's birthday. You have decided the cake will have one candle for each year of their total age. T..

Problem. Warmup - Mini-Max Sum Link. https://www.hackerrank.com/challenges/mini-max-sum/problem?isFullScreen=true Mini-Max Sum | HackerRank Find the maximum and minimum values obtained by summing four of five integers. www.hackerrank.com Description. Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print t..

Problem. Warmup - Plus Minus Link. https://www.hackerrank.com/challenges/plus-minus/problem?isFullScreen=true Diagonal Difference | HackerRank Calculate the absolute difference of sums across the two diagonals of a square matrix. www.hackerrank.com Description. Given an array of integers, calculate the ratios of its elements that are positive, negative, and zero. Print the decimal value of each ..

Problem. Warmup - Diagonal Difference Link. https://www.hackerrank.com/challenges/diagonal-difference/problem?isFullScreen=true A Very Big Sum | HackerRank Calculate the sum of the values in an array that might exceed the range of int values. www.hackerrank.com Description. Given a square matrix, calculate the absolute difference between the sums of its diagonals. Key Point. My Answer. 'use stri..