728x90
반응형
- [프로그래머스 코딩테스트] java Lv.0 로그인 성공?chantlemanclass Solution { public String solution(String[] id_pw, String[][] db) { String answer = "fail"; for(String[] temp: db) { if(!temp[0].equals(id_pw[0])) //id가 다른 경우 { } else if(temp[1].equals(id_pw[1])) //id와 pw가 같은 경우 { return "login"; } ..
- 2024-08-12 09:45:57
- [프로그래머스 코딩테스트] java Lv.0 종이 자르기chantlemanclass Solution { public int solution(int M, int N) { int answer = answer=M*N-1; return answer; } }
- 2024-08-12 09:37:14
- [프로그래머스 코딩테스트] java Lv.0 캐릭터의 좌표chantlemanclass Solution { public int[] solution(String[] keyinput, int[] board) { int[] answer = {0,0}; int wlength = board[0]/2; int hlength = board[1]/2; for(int i=0;i
- 2024-08-12 09:31:22
- [프로그래머스 코딩테스트] java Lv.0 직사각형 넓이 구하기chantlemanimport java.util.*; class Solution { public int solution(int[][] dots) { int answer = 0; int x = dots[0][0]; int y = dots[0][1]; for(int i=0;i
- 2024-08-12 09:18:32
- [프로그래머스 코딩테스트] java Lv.0 외계어 사전chantlemanclass Solution { public int solution(String[] spell, String[] dic) { int answer = 2; boolean chk=false; for(String d:dic){ for(String s:spell){ if(!d.contains(s)) { chk=true; } } if(!chk) return 1; chk=false; ..
- 2024-08-09 10:01:00
- [프로그래머스 코딩테스트] java Lv.0 삼각형의 완성조건(2)chantlemanimport java.util.*; class Solution { public int solution(int[] sides) { int answer = 0; Arrays.sort(sides); int min=sides[0]; int max=sides[1]; int high = min+max; int low = max-min; answer=high-low-1; return answer; } }
- 2024-08-09 09:45:14
- [프로그래머스 코딩테스트] java Lv.0 문자열 계산하기chantlemanclass Solution { public int solution(String my_string) { int answer = 0; String[] tokens = my_string.split(" "); answer=Integer.parseInt(tokens[0]); String temp=""; for(int i=1;i
- 2024-08-09 09:44:11
- [프로그래머스 코딩테스트] java Lv.0 소인수분해chantlemanimport java.util.*; class Solution { public int[] solution(int n) { List list = new ArrayList(); int temp=n; for(int i=2;i
- 2024-08-08 09:51:14
728x90
반응형
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)