본문 바로가기

분류 전체보기

(644)
[프로그래머스/자바] 접미사 배열 import java.util.Arrays; class Solution { public String[] solution(String my_string) { String[] answer = new String[my_string.length()]; for(int i=0; i
[프로그래머스/자바] 약수 구하기 import java.util.ArrayList; import java.util.List; class Solution { public int[] solution(int n) { List list = new ArrayList(); for(int i=1; i
[프로그래머스/자바] A로 B 만들기 import java.util.Arrays; class Solution { public int solution(String before, String after) { char[] beforeArr = before.toCharArray(); char[] afterArr = after.toCharArray(); Arrays.sort(beforeArr); Arrays.sort(afterArr); for(int i=0; i
[프로그래머스/자바] 팩토리얼 class Solution { public int solution(int n) { int temp = 1; int num = 1; while(temp n) break; num++; } return num - 1; } }
[프로그래머스/자바] 모스부호 (1) class Solution { public String solution(String letter) { StringBuilder sb = new StringBuilder(); String[] morse = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."}; String[] bits = letter.split(" "); for(String bit : bits){ for(int i=0; i
61일차 - JSON 테스트, API 엔드 포인트, Swagger JSON 응답 결과 테스트 import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; ... @Test void t001() throws Exception { // When ResultActions resultActions = mvc .perform( ... ) .andDo(print()); // Then resultActions .andExpect(status().is2xxSuccessful()) .andExpect(jsonPath("$.resultCode").value("Success")) // resultCode 값은 "Success"여야 한다. .andExpect(jsonPath("$.data.a..
60일차 - 톰캣, 프로그래머스 문제 풀이, Postman 톰캣 설치 https://tomcat.apache.org/download-10.cgi Apache Tomcat® - Apache Tomcat 10 Software Downloads Welcome to the Apache Tomcat® 10.x software download page. This page provides download links for obtaining the latest version of Tomcat 10.1.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versi tomcat.apache.org 64-bit Windows zip 다운로드..
[프로그래머스/자바] 신입사원 교육 import java.util.Arrays; class Solution { public int solution(int[] ability, int number) { for(int i=0; i