일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python
- javascript
- 2주 프로젝트
- 프로그래머스
- 리덕스
- 자바스크립트
- 제로초
- til
- 타입스크립트
- 백준
- js
- 파이썬
- SQL 고득점 Kit
- 코어 자바스크립트
- 손에 익히며 배우는 네트워크 첫걸음
- 리액트
- 코드스테이츠
- programmers
- 회고
- 리트코드
- 4주 프로젝트
- codestates
- 알고리즘
- 타임어택
- 정재남
- Async
- LeetCode
- 타입스크립트 올인원
- 토익
- 렛츠기릿 자바스크립트
- Today
- Total
목록Problem Solving/Algorithm 문제 풀기 (172)
Jerry
오늘 프로그래머스에서 푼 문제는 "코딩 테스트 연습 -> 해시"로 들어가 푼 문제다. 참가자 그룹 배열이 있고, 참가자 중 완주한 그룹 배열이 있다. (문제는 여기!!) 그 중, 한 명은 완주를 못 한 사람이 발생하는데 이를 구하는 문제라고 해석했다. 수도 코드 p = 참가자 cp = 완주한 참가자 cp.length === p.length - 1 바깥 for문 cnt = 0; 안쪽 for문 if (만약 Cp가 p와 같고, cnt 가 0일 때) { cnt++ 참가자를 삭제한다 } 결국, 남는 참가자는 1명 return p[0]; 소스 코드 function solution(participant, completion) { let answer = ''; for (let j = 0; j < completion.l..
In this challenge, you are required to calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large. Constraints 1
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. 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. The rating for Alice's challenge is the triplet a = (a[0], a[1], a[..