프로그래머스/JAVA21 [level 1] 평균 구하기 12345678910111213class Solution { public double solution(int[] arr) { double answer = 0; double count=0;//int형으로 선언하면 소수점 아래의 숫자가 잘린다. for(int i=0;i 2018. 9. 2. [level 1] 수박수박수박수? 123456789101112131415class Solution { public String solution(int n) { String answer = ""; for (int i = 0; i 2018. 9. 1. [level 1] 약수의 합 12345678910111213class Solution { public int solution(int n) { int answer = 0; for(int i=1;i 2018. 8. 21. [level 1] 문자열 내림차순으로 배치하기 12345678910111213import java.util.*; class Solution { public String solution(String s) { String answer = ""; String[] st = s.split(""); Arrays.sort(st); Collections.reverse(Arrays.asList(st)); answer = String.join("", st); return answer; }}Colored by Color Scriptercs 문제 설명문자열 s에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수, solution을 완성해주세요.s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다. 제한 사항str은 .. 2018. 8. 21. 이전 1 2 3 4 5 6 다음