728x90
반응형

전체 글 137

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Strings > Java String Reverse 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 회문은 앞뒤로 동일한 단어, 구, 숫자 또는 기타 문자 시퀀스입니다. 문자열 A가 주어지면 회문이면 Yes를 출력하고 그렇지 않으면 No를 출력하세요. Constraints A는 최대 50개의 영문 소문자로 구성됩니다. Sample..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Strings > Java Substring Comparisons 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 다음 용어를 정의합니다. 알파벳 또는 사전 순서라고도 하는 사전 순서는 다음과 같이 문자를 정렬합니다. A

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Strings > Java Substring 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 문자열, s 및 두 개의 인덱스(시작 및 끝)가 주어지면 시작에서 끝-1까지를 포함하는 범위의 모든 문자로 구성된 하위 문자열을 출력합니다. 이 문제를 완료하는 데 도움이 되는 String 클래스의 substring이 도움이 됩니다. Inp..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Strings > Java Strings Introduction 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: String (computer science) 이 챌린지에서는 Java 문자열에 대한 이해도를 테스트합니다. String..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java Currency Formatter 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 금액을 나타내는 배정밀도 숫자가 주어지면 NumberFormat 클래스의 getCurrencyInstance 메서드를 사용하여 미국, 인도, 중국 및 프랑스 통화 형식으로 변환합니다. 그런 다음 형식이 지정된 값을 ..

[해커랭크(HackerRank) JAVA 풀이] - Java Int to String

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java Int to String 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 정수 n이 주어지면 이를 문자열로 변환해야 합니다. 코드가 n을 문자열 s로 성공적으로 변환하면 코드는 "Good job"을 인쇄합니다. 그렇지 않으면 "Wrong answer"이 인쇄됩니다. n은 -100에서 100(포함)..

[해커랭크(HackerRank) JAVA 풀이] - Java Static Initializer Block

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java Static Initializer Block 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 정적 초기화 블록은 클래스가 로드될 때 실행되며 해당 블록에서 정적 변수를 초기화할 수 있습니다. 너비가 B이고 높이가 H인 평행사변형의 면적을 출력하도록 주어진 코드를 완성하십시오. 표준 입력에서 변수를..

[해커랭크(HackerRank) JAVA 풀이] - Java End-of-file

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java End-of-file 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 "컴퓨팅에서 파일 끝(일반적으로 EOF로 축약됨)은 데이터 소스에서 더 이상 데이터를 읽을 수 없는 컴퓨터 운영 체제의 조건입니다." — (Wikipedia: End-of-file) 이번 챌린지에서는 EOF에 도달할 때까지 n줄..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java Datatypes 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가지 기본 데이터 유형이 있습니다. boolean : true 또는 false char : 단일 16비트 유니코드 문자 byte : 8비트 부호 있는 정수 short : 16비트 부호 있는 정수 int : 32비트 부..

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

해커랭크 - https://www.hackerrank.com/ Prepare > Java > Introduction > Java Loops II 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 정수 a, b, n을 사용하여 다음 식을 만듭니다. (a + 2⁰ㆍb), (a + 2⁰ㆍb + 2¹ㆍb), ... , (a + 2⁰ㆍb + 2¹ㆍb + ... + 2ⁿ⁻¹ㆍb) q 쿼리는 a, b, n 형식으로 제공됩니다. 각 쿼리에..

728x90
반응형