250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

[Algorithm] 테이블 해시 함수 ( Programmers - JavaScript ) 본문

[Snow-ball]프로그래밍(컴퓨터)/Algorithm Training

[Algorithm] 테이블 해시 함수 ( Programmers - JavaScript )

Snow-ball 2023. 10. 12. 20:57
반응형

문제 설명

 

 

 


 

 

 

제한 사항

 

 

 


 

 

 

입출력 예

 

 

 


 

 

 

입출력 예 설명

 

 

 


 

 

 

문제 풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function solution(data, col, row_begin, row_end) {
  let answer = 0;
 
  data.sort((a, b) => {
    const desc = a[col - 1- b[col - 1];
    if (a[col - 1=== b[col - 1]) {
      const asc = b[0- a[0];
      return asc;
    }
    return desc;
  });
 
  for (let i = row_begin; i <= row_end; ++i)
    answer ^= data[i - 1].reduce(
      (accumulator, currentValue) => accumulator + (currentValue % i),
      0
    );
 
  return answer;
}
cs

 

 

 

 

 

 

 

 

https://school.programmers.co.kr/learn/courses/30/lessons/147354

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

 

 

반응형
Comments