티스토리 뷰
Question
Given an array of integers, calculate the ratios of its elements that are positive, negative, and zero. Print the decimal value of each fraction on a new line with 6 places after the decimal.
주어진 Array안에서 negative value, positive value 그리고 0 의 수가 array크기에 얼마나 비례하는지 소수점 6자리까지 프린트하는 문제.
Example output
0.400000
0.400000
0.200000
Solution
let arr = [1, 1, 0, -1, -1];
function diagonalDifference(arr) {
let zero = 0, pos = 0, neg = 0;
let leng = arr.length;
arr.forEach(i => {
if (i === 0)
zero++;
if (i > 0)
pos++;
if (i < 0)
neg++;
})
console.log((pos / leng).toFixed(6))
console.log((neg / leng).toFixed(6))
console.log((zero / leng).toFixed(6))
}
Output
0.400000
0.400000
0.200000
toFixed() 를 사용해서 소수점의 자리 수를 명시한다.
for loop를 이용했을 때 forEach와는 다른 결과값이 나왔는데 자동으로 array의 element를 차례로 call하는 forEach와는 다르게
arr[i]라고 확실히 명시해주지 않은 human error였음.
for( let i = 0; i < leng; i++) {
if (arr[i] === 0)
zero++;
if (arr[i] > 0)
plus++;
if (arr[i] < 0)
minus++;
}
Reference
https://www.hackerrank.com/challenges/plus-minus/problem
'Algorithms' 카테고리의 다른 글
Mini-Max Sum (0) | 2020.08.04 |
---|---|
Staircase (0) | 2020.08.04 |
Diagonal Difference in JavaScript (0) | 2020.07.27 |
Calculate the Max minus Min Value in Array (0) | 2019.09.08 |
Get the second smallest element in array (0) | 2019.09.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- easy algorithm
- hackerrank javascript
- ... in Javascript
- C++
- equals()
- code refactoring
- hackerrank solution
- algorithm
- HackerRank Algorithm
- 프로그래머스 알고리즘
- substring()
- math.abs
- repeat()
- Javascript Algorithm
- HashMap
- compareTo()
- math.max
- Collection Framework
- hackerrank javascript solution
- 알고리즘
- string class in java
- hackerrank
- javascript
- Object type casting
- 프로그래머스
- java
- rest parameter
- spring boot application
- 프로그래머스 알고리즘문제
- easy javascript algorithm
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함