728x90
반응형

jini:) 137

[해커랭크(HackerRank) SQL 풀이] - Binary Tree Nodes

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Advanced Select > Binary Tree Nodes 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 주어진 테이블 BST에는 두 개의 열이 있습니다: N과 P. 여기서 N은 이진트리의 노드 값을 나타내고, P는 N의 부모를 나타냅니다. 이진트리의 노드 유형을 값의 순서대로 정렬하여 ..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Advanced > Java Lambda Expressions 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 8 챌린지는 Lambda 표현식에 대한 지식을 테스트합니다! 지정된 작업을 수행하는 람다 식을 반환하는 다음 메서드를 작성합니다. PerformOperation isOdd(): 람다 식은 숫자가 홀수이면 tru..

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

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Advanced Select > Occupations 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 OCCUPATIONS 테이블에서 직업(Occupation) 열을 기준으로 이름(Name)을 알파벳 순으로 정렬하여 출력합니다.(Pivot) 각 직업에 해당하는 이름은 Doctor, Profess..

[해커랭크(HackerRank) JAVA 풀이] - Covariant Return Types

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Advanced > Covariant Return Types 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는 공변 반환 유형을 허용합니다. 즉, 지정된 반환 유형의 하위 클래스를 반환하는 한 반환 유형을 변경할 수 있습니다. 메서드 재정의를 사용하면 하위 클래스가 기존 슈퍼클래스 메서드의 동작을 재정의하고 원래 반환 유형..

[해커랭크(HackerRank) SQL 풀이] - The PADS

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Advanced Select > The PADS 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 다음 두 가지 결과를 생성합니다. 1. OCCUPATIONS 테이블에 있는 모든 Name의 알파벳순으로 목록을 조회하고 바로 뒤에 각 직업의 첫 글자를 괄호로 묶습니다. (예: AnActorName(..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Advanced > Java Annotations 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 Annotations은 Java 클래스 또는 클래스 요소의 메타데이터를 정의하는 데 사용할 수 있습니다. 컴파일 시간에 Java Annotations을 사용하여 컴파일러에 빌드 프로세스에 대해 지시할 수 있습니다. Annota..

[해커랭크(HackerRank) SQL 풀이] - Type of Triangle

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Advanced Select > Type of Triangle 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 TRIANGLES 테이블에서 세 변의 길이를 사용하여 각 레코드의 유형을 식별하는 쿼리를 작성합니다. 각 레코드에 대해 다음 중 하나의 문장을 출력해야 합니다. 정삼각형 (Equilat..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Advanced > Java Visitor Pattern 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 Note : 이 문제에서는 스스로 출력을 생성해서는 안 됩니다. 그러한 솔루션은 규칙에 위배되는 것으로 간주되며 작성자는 실격됩니다. 솔루션의 출력은 솔루션 템플릿에서 제공되는 편집 불가능한 코드로 생성되어야 합니다. 객체 지향..

[해커랭크(HackerRank) SQL 풀이] - Employee Salaries

해커 랭크 - https://www.hackerrank.com/ Prepare > SQL > Basic Select > Employee Salaries 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 Employee 테이블에서 사원의 급여가 월 2000달러를 넘고, 근무개월 수가 10개월 미만인 사원의 사원명(name 속성)을 employee_id를 오름차순으로 정렬합니다. Input ..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Advanced > Java Singleton Pattern 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 "싱글톤 패턴은 클래스의 인스턴스화를 하나의 개체로 제한하는 디자인 패턴입니다. 이는 시스템 전체에서 작업을 조정하기 위해 정확히 하나의 개체가 필요할 때 유용합니다." - Wikipedia: Singleton Pattern..

728x90
반응형