일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- useState
- 컴퓨터 네트워크
- 코딩테스트 고득점 Kit
- 데이터모델링과마이닝
- 프로그래머스 완전탐색
- react
- 코딩테스트 고득점 Kit 완전탐색
- 프로그래밍 언어론
- 프로그래머스
- Java
- vanillaJS
- 자바스크립트
- 디자인 패턴
- NextJS
- 자바 공부
- 코틀린
- websocket
- useEffect
- react firebase
- react hook
- codesandbox
- JavaScript
- 장고
- React JS
- 리액트 훅
- 백준
- 프로그래머스 자바
- 리액트
- design pattern
- 자바
- Today
- Total
목록JAVA (22)
기록하는 개발자
https://school.programmers.co.kr/learn/courses/30/lessons/42898 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 [ javascript ] function solution(m, n, puddles) { let answer = 0; let DP = Array.from(Array(n+1), ()=>Array(m+1).fill(0)); DP[1][1]=1; for(let i=0; i
Map map = new HashMap(); map의 String형 keySet을 list로 저장 List keySetList = new ArrayList(map .keySet()); value값에 따라 정렬 오름차순 Collections.sort(keySetList, (o1, o2) -> (temp.get(o1).compareTo(temp.get(o2)))); 내림차순 Collections.sort(keySetList, (o1, o2) -> (temp.get(o2).compareTo(temp.get(o1))));
문자 → 숫자 : int num = (int)c ; 숫자 → 문자 : char c=(char)num ;
PriorityQueue heap = new PriorityQueue(); heap.offer(value) : queue에 value 추가 heap.peek() : queue의 첫 번째 요소 반환 heap.poll() : queue의 첫 번째 요소를 삭제하고 반환. queue가 비어있는 경우 null 반환 heap.remove() : 큐의 첫 번째 값 제거 heap.clear() : 큐 초기화
제곱근 구하기 double result = Math.sqrt(25); // 5.0 거듭제곱 구하기 double result = Math.pow(5, 2); // 5*5
arraylist 정렬 import java.util.Collections; ArrayList arraylist = new ArrayList(); Collections.sort(arraylist); 배열 정렬 import java.util.Arrays; int[] intArray = {5,1,4,2,6,3,7}; Arrays.sort(intArray); // intArray ={1,2,3,4,5,6,7}
string을 정수로 변환 String StoN = "100"; int temp=Integer.parseInt(StoN); // temp = 10 정수를 string으로 변환 int num = 10; String numericStr1 = String.valueOf(num); String numericStr2 = Integer.toString(num); char형을 string으로 변환 char myChar = 'c'; String charToString = String.valueOf(myChar); // charToString = "c"