본문 바로가기

Level 1 - 문자열 내림차순으로 배치하기 reverseStr 메소드는 String형 변수 str을 매개변수로 입력받습니다. str에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 String을 리턴해주세요. str는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다. 예를들어 str이 Zbcdefg면 gfedcbZ을 리턴하면 됩니다. 풀이import java.util.Arrays; public class ReverseStr { public String reverseStr(String str){ char[] chars = str.toCharArray(); Arrays.sort(chars); return new StringBuffer(new String(chars)).reverse().toString(); } //.. 더보기
Level 1 - 피보나치 수 피보나치 수는 F(0) = 0, F(1) = 1일 때, 2 이상의 n에 대하여 F(n) = F(n-1) + F(n-2) 가 적용되는 점화식입니다. 2 이상의 n이 입력되었을 때, fibonacci 함수를 제작하여 n번째 피보나치 수를 반환해 주세요. 예를 들어 n = 3이라면 2를 반환해주면 됩니다. 풀이import java.util.LinkedList; class Fibonacci { public long fibonacci(int num) { if (num == 0 || num == 1) return num; else { LinkedList lists = new LinkedList(); lists.add(0L); lists.add(1L); for (int i = 2; i 더보기
Level 1 - 최대값과 최소값 getMinMaxString 메소드는 String형 변수 str을 매개변수로 입력받습니다. str에는 공백으로 구분된 숫자들이 저장되어 있습니다. str에 나타나는 숫자 중 최소값과 최대값을 찾아 이를 (최소값) (최대값)형태의 String을 반환하는 메소드를 완성하세요. 예를들어 str이 1 2 3 4라면 1 4를 리턴하고, -1 -2 -3 -4라면 -4 -1을 리턴하면 됩니다. 풀이import java.util.Arrays; public class GetMinMaxString { public String getMinMaxString(String str) { String [] strNumbers = str.split(" "); int[] numbers = new int[strNumbers.length].. 더보기
Level 1 - 수박수박수박수박수박수 water_melon함수는 정수 n을 매개변수로 입력받습니다. 길이가 n이고, 수박수박수...와 같은 패턴을 유지하는 문자열을 리턴하도록 함수를 완성하세요.예를들어 n이 4이면 '수박수박'을 리턴하고 3이라면 '수박수'를 리턴하면 됩니다. 풀이public class WaterMelon { public String watermelon(int n){ String result = ""; for(int i = 1; i 더보기
Non-Repeating Character (Java) Implement a function that takes a string and returns the first character that does not appear twice or more.Example:"abacc" -> 'b' ('a' appears twice, and so does 'c')"xxyzx" -> 'y' ('y' and 'z' are non-repeating characters, and 'y' appears first)If there is no non-repeating character, return null. 풀이 import java.util.*; public class NR { public static void main(String[] args) { // NOTE: The fol.. 더보기
Is One Array a Rotation of Another? (Java) Write a function that returns true if one array is a rotation of another.NOTE: There are no duplicates in each of these arrays. Example: [1, 2, 3, 4, 5, 6, 7] is a rotation of [4, 5, 6, 7, 1, 2, 3]. 풀이 import java.util.List;import java.util.ArrayList;import java.util.Arrays; public class IR { public static void main(String[] args) { // NOTE: The following input values will be used for testing yo.. 더보기
Common Elements in Two Sorted Arrays (Java) Write a function that returns the common elements (as an array) between two sorted arrays of integers (ascending order).Example: The common elements between [1, 3, 4, 6, 7, 9] and [1, 2, 4, 5, 9, 10] are [1, 4, 9]. 풀이 import java.util.ArrayList;import java.util.HashMap;import java.util.List; public class CE { public static void main(String[] args) { // NOTE: The following input values are used f.. 더보기
Day 3: Intro to Conditional Statements Task Given an integer, , perform the following conditional actions:If is odd, print WeirdIf is even and in the inclusive range of to , print Not WeirdIf is even and in the inclusive range of to , print WeirdIf is even and greater than , print Not WeirdComplete the stub code provided in your editor to print whether or not is weird.Input FormatA single line containing a positive integer, .Constrai.. 더보기
Day 2: Operators Task Given the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal, find and print the meal's total cost.Note: Be sure to use precise values for your calculations, or you may end up with an incorrectly rounded result!Input FormatThere are lines of numeric input: The f.. 더보기
Hash Tables: Ransom Note A kidnapper wrote a ransom note but is worried it will be traced back to him. He found a magazine and wants to know if he can cut out whole words from it and use them to create an untraceable replica of his ransom note. The words in his note are case-sensitive and he must use whole words available in the magazine, meaning he cannotuse substrings or concatenation to create the words he needs.Give.. 더보기