Posts 알고리즘 > Tip 모음
알고리즘 > Tip 모음
Cancel

알고리즘 > Tip 모음

알고리즘 팁!!

배열에서 max보다 큰 값 있는지 확인

1
if (priorities.filter(data => max < data).length > 0)

배열에서 max값 찾기

1
let max = Math.max.apply(null, priorities);

배열끼리 서로 같은 값이 몇 개 있는지 확인

1
const sameData = lottos.filter((n) => win_nums.includes(n)).length;

배열 => 객체로 변환

1
new Map();

This post is licensed under CC BY 4.0 by the author.

알고리즘 > 프로그래머스 2단계 프린터

TIL 268일차

Comments powered by Disqus.