
[프로그래머스/JAVA] - 숫자의 표현
문제 풀이 class Solution { public int solution(int n) { int answer = 0; for(int i=0;i
문제 풀이 class Solution { public int solution(int n) { int answer = 0; for(int i=0;i
문제 풀이 class Solution { public int[] solution(String s) { int[] answer = new int[2]; int count=0; int k=0; while(!s.equals("1")){ //s가 1이 될때까지 반복 for(int i=0;i 2진수 변환 메서드 int n=12 N = Integer.toBinaryString(n); 출력결과 1100 .replaceAll() 더보기 대상문자열을 원하는 문자로 바꿔주는 메서드 문자.replaceAll("대상 문자열", "변환 할 문자"); String s ="hello world"; s = s.replaceAll("hello","hi"); 출력결과 hi world
https://school.programmers.co.kr/learn/courses/30/lessons/12951 문제 풀이 class Solution { public String solution(String s) { String answer = ""; boolean A=true; s=s.toLowerCase(); String arr[]=s.split(""); for(String ss:arr){ answer+= A?ss.toUpperCase():ss;//문자 앞이 공백일시 단어의 첫문자가 되기 때문에 대문자로 변경해준다. A=ss.equals(" ")?true:false; } return answer; } }
문제 풀이 import java.util.*; class Solution { public String solution(String s) { String answer = ""; String arr[] =s.split(" ");//split()을 이용하여 각 값을 배열에 저장 int intarr[]=new int[arr.length]; int a=0; for(String i : arr){ intarr[a++]=Integer.parseInt(i); //String에서 바로 sort를 해줄 경우 음수값을 인식하지 못해 답이 나오지 않기 때문에Int 형으로 변환 후 sort해줬다. } Arrays.sort(intarr); answer=Integer.toString(intarr[0])+" "+Integer.toSt..