프로그래머스 1단계 - 숫자 문자열과 영단어
https://programmers.co.kr/learn/courses/30/lessons/81301 코딩테스트 연습 - 숫자 문자열과 영단어 네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자 programmers.co.kr class Solution { public int solution(String s) { String[] num = {"0","1","2","3","4","5","6","7","8","9"}; String[] days = {"zero","one","two","three","four","five","six","seven","eight","nine"}; f..
2021. 8. 12.
프로그래머스 1단계 - 위클리 챌린지 2주차
https://programmers.co.kr/learn/courses/30/lessons/83201 코딩테스트 연습 - 2주차 [[100,90,98,88,65],[50,45,99,85,77],[47,88,95,80,67],[61,57,100,80,65],[24,90,94,75,65]] "FBABD" [[70,49,90],[68,50,38],[73,31,100]] "CFD" programmers.co.kr import java.util.*; class Solution { public String solution(int[][] scores) { StringBuilder sb = new StringBuilder(); for(int i=0; i= 80.0) return "B"; else if(score >= ..
2021. 8. 12.