728x90
반응형

전체 글 137

[해커랭크(HackerRank) JAVA 풀이] - Java Priority Queue

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java Priority Queue HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com 컴퓨터 과학에서 우선순위 대기열은 일반 대기열과 비슷하지만 추가로 각 요소에 연결된 "우선순위"가 있는 추상 데이터 유형입니다. 우선순위 대기열에서 우선순위가 높은 요소는 우선순위가 낮은 요소보다 먼저 제공됩니다. -..

[해커랭크(HackerRank) SQL 풀이] - Select By ID

해커랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Select By ID HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블에 ID가 1661인 모든 칼럼을 조회합니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT * FROM CITY WHERE ID = '1661'; Oracl..

[해커랭크(HackerRank) JAVA 풀이] - Java BitSet

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java BitSet HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com Java의 BitSet 클래스는 필요에 따라 커지는 비트 값 벡터(즉, false(0) 또는 true(1))를 구현하므로 공간을 최적화하면서 비트를 쉽게 조작할 수 있습니다(다른 컬렉션과 비교할 때). 비트 값이 1인 모든 요소를 ..

[해커랭크(HackerRank) SQL 풀이] - Select All

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Select All HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com CITY 테이블 내의 각 행에 대해 모든 칼럼(어트리뷰트)을 조회합니다. CITY 테이블은 다음과 같이 설명되어 있습니다. MySQL SELECT * FROM CITY; Oracle SELECT * F..

[해커랭크(HackerRank) JAVA 풀이] - Java Dequeue

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java Dequeue HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com 컴퓨터 과학에서 양방향 큐(dequeue, 종종 deque로 약칭됨, Deck로 발음됨)는 큐를 일반화하는 추상 데이터 유형으로, 이 큐에 대해 앞(머리) 또는 뒤(꼬리)에 요소를 추가하거나 제거할 수 있습니다. ). Deque ..

[해커랭크(HackerRank) SQL 풀이] - Revising the Select Query II

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Revising the Select Query II HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com 인구가 12만 명이 넘는 CITY 테이블 내 모든 미국 도시에 대해 NAME 필드를 조회합니다. 미국의 국가 코드는 USA입니다. CITY 테이블은 다음과 같이 설명되어..

[해커랭크(HackerRank) JAVA 풀이] - Java Sort

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java Sort HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com ID, FirstName 및 CGPA와 같은 학생 정보 목록이 제공됩니다. 당신의 임무는 CGPA에 따라 내림차순으로 그것들을 재배열하는 것입니다. 두 학생의 CGPA가 같으면 이름에 따라 알파벳 순서로 정렬합니다. 두 학생의 이름도 ..

[해커랭크(HackerRank) SQL 풀이] - Revising the Select Query I

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Revising the Select Query I HackerRank - Online Coding Tests and Technical Interviews HackerRank is the market-leading coding test and interview solution for hiring developers. Start hiring at the pace of innovation! www.hackerrank.com 인구가 10만 명이 넘는 CITY 테이블 내 모든 미국 도시에 대해 모든 열을 조회합니다. 미국의 국가 코드는 USA입니다. CITY 테이블은 다음과 같이 설명되어 있습니..

[해커랭크(HackerRank) JAVA 풀이] - Java Comparator

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java Comparator HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com Comparator는 두 객체를 비교하는 데 사용됩니다. 이 챌린지에서는 Comparator를 만들고 이를 사용하여 배열을 정렬합니다. Player 클래스는 편집기에서 제공됩니다. 이름 문자열과 점수 정수의 2개 필드가 있습..

[해커랭크(HackerRank) JAVA 풀이] - Java Generics

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Data Structures > Java Generics HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com 제네릭 메서드는 단일 메서드를 사용하여 여러 데이터 유형을 처리하는 매우 효율적인 방법입니다. 이 문제는 Java Generic 메서드에 대한 지식을 테스트합니다. 정수 배열과 문자열 배열이 있다고 가정해 보겠습니다. 두 배열의..

728x90
반응형