분류 전체보기365 [네이버 클라우드] NCE 자격증 공부 방법 및 후기 NCE 자격증 취득 정보 결국 NCE 자격증도 취득하고 말았다. 집념의 인간. 😂 원래는 NCE 만 취득하면 이전 포스팅 처럼 NCA, NCP, NCE 만 있어서 예쁘게 모든 색깔이 색칠되었을텐데... 갑자기 NCAI 라는 자격증이 생기면서 회색 부분으로 노출되는 부분이 생겨버렸다. 🥲NCP 취득할 때만해도 안 그랬는데 🥹 https://la-reveuse.tistory.com/393 [네이버 클라우드] NCP 자격증 공부 방법 및 후기NCP 자격증 취득 정보 NCA/NCP 자격증 공부 방법 1 . NCP 서비스 별 설명 읽어보기 https://www.ncloud.com/ NAVER CLOUD PLATFORM cloud computing services for corporations, IaaS, P.. 2023. 12. 23. [Java] 프로그래머스_134240 : 푸드 파이트 대회 String.repeat 이용하기 푸드 파이트 대회 : Level1 https://school.programmers.co.kr/learn/courses/30/lessons/134240 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 처음 작성한 코드 class Solution { public String solution(int[] food) { String str = ""; for (int i = 1; i < food.length; i++) { for (int j = 0; j < food[i] / 2; j++) { str += String.valueOf(i.. 2023. 12. 17. [Java] 프로그래머스_17681 : [1차] 비밀지도 Integer.toBinaryString , replace, String.format 이용하기 [1차] 비밀지도 : Level1 https://school.programmers.co.kr/learn/courses/30/lessons/17681 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 처음 작성한 코드 import java.util.*; class Solution { public String[] solution(int n, int[] arr1, int[] arr2) { String[] answer = new String[n]; String[] binA.. 2023. 12. 17. [Java] 프로그래머스_42748 : K번째수 Arrays.copyOfRange 이용하기 K번째수 : Level1 https://school.programmers.co.kr/learn/courses/30/lessons/42748 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 코드 import java.util.*; class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; for (int i = 0; i < commands.length; i++) { in.. 2023. 12. 15. [Java] 프로그래머스_12915 : 문자열 내 마음대로 정렬하기 Arrays.sort 와 compareTo() 활용하기 문자열 내 마음대로 정렬하기 : Level1 https://school.programmers.co.kr/learn/courses/30/lessons/12915 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 코드 import java.util.*; class Solution { public String[] solution(String[] strings, int n) { Arrays.sort(strings, (s1, s2) -> { char c1 = s1.charAt(n); char c2 = s2... 2023. 12. 15. [Java] 프로그래머스_81301 : 숫자 문자열과 영단어 replace 활용하기 숫자 문자열과 영단어 : Level1 https://school.programmers.co.kr/learn/courses/30/lessons/81301 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 처음 작성한 코드 import java.util.*; class Solution { public int solution(String s) { HashMap wordToNum = new HashMap() {{ put("zero", 0); put("one", 1); put("two", 2); put("three", 3); put("four".. 2023. 12. 13. 이전 1 ··· 7 8 9 10 11 12 13 ··· 61 다음