일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- react
- 데이터모델링과마이닝
- react firebase
- vanillaJS
- 프로그래밍 언어론
- 코딩테스트 고득점 Kit
- 코틀린
- 자바
- 리액트 훅
- 프로그래머스 자바
- 디자인 패턴
- React JS
- NextJS
- 장고
- design pattern
- websocket
- 자바 공부
- 컴퓨터 네트워크
- react hook
- Java
- 코딩테스트 고득점 Kit 완전탐색
- 리액트
- codesandbox
- 자바스크립트
- 백준
- useEffect
- 프로그래머스
- JavaScript
- 프로그래머스 완전탐색
- useState
- Today
- Total
목록분류 전체보기 (299)
기록하는 개발자
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"
ArrayList() arraylist = new ArrayList(); int[] intArray = {1, 2, 3, 4, 5}; integer list를 int 배열로 int[] answer = arraylist.stream().mapToInt(Integer::intValue).toArray(); int 형 배열을 integer list로 ArrayList() list = Arrays.asList(intArray);
num의 약수의 개수 구하기 public class Main { public static int divisor(int num){ int total = 1; for (int i = 2; i
소수이면 true, 소수가 아니면 false를 반환하는 코드 public class Main { public static boolean isPrime(int num){ for(int i=2; i*i
문자 대소문자 변환 char[] charArr = {A,b,C,d,E,f,G}; for(int i = 0 ; i= 'a' && charArr[i] = 'A' && charArr[i]
int 형 2차원 배열을 0번째 인덱스 기준으로 정렬 하기 // 오름차순 Arrays.sort(arr, new Comparator() { @Override public int compare(int[] o1, int[] o2) { return o1[0] - o2[0]; } }) // 내림차순 Arrays.sort(arr, new Comparator() { @Override public int compare(int[] o1, int[] o2) { return o2[0] - o1[0]; } }) // 람다식(오름차순 정렬) Arrays.sort(array, (o1, o2) -> compare(o1[0], o2[0])); Double 형 2차원 배열 // 오름차순 Arrays.sort(array, new Com..
startsWith() - boolean startsWith(String prefix) - startsWith() 함수는 대상 문자열이 특정 문자 또는 문자열로 시작하는지 체크하는 함수이다. - 해당 문자열로 시작되는지 여부를 확인하고 boolean 에 맞춰 true/false 값을 리턴한다. endsWith() - boolean endsWith(String suffix) - endsWith() 함수는 대상 문자열이 특정 문자 또는 문자열로 끝나는지 체크하는 함수이다. - 해당 문자열로 끝나는 여부를 확인하고 boolean 에 맞춰 true/false 값을 리턴한다. String example = "this is my blog"; System.out.println(example.startsWith("t"..
Stirng string = "string"; string.charAt(index) : 특정 index 위치의 문자 반환 string.indexOf() / lastIndexOf() : 문자열 검색해서 위치 반환 string.length() : 문자열 길이 반환 string.substring(indexA, indexB+1) : indexA부터 indexB까지 값을 잘라 반환한다. ex) string.subString(1, s.length()-1); // 앞 뒤 한 문자씩 잘라준다. string.replace('firstParameter','secondParameter'); : character형의 모든 firstParameter를 secondParameter로 변경한다. ex) string.replace(..