전체 글 썸네일형 리스트형 20190918 1. 나머지는 배열의 인덱스를 활용할 것. https://wellohorld.tistory.com/12 [백준 3052번] 나머지 - Java //Wello Horld// 백준 알고리즘 3052번 나머지를 Java로 풀어보자 총 10개의 수를 입력받고 그 수들을 42로 나누고 남은 나머지가 중복 되는지 체크하면 되는 문제다. 정답율이 70%가 넘는 아주 쉬운 문제이므로, 쉽게 쉽게 풀어.. wellohorld.tistory.com 2. ArrayList에 객체 생성해서 값 입력하고 값의 여부 확인 https://jethihmm.tistory.com/entry/%EC%9E%90%EB%B0%94-ArrayList%EC%97%90-%EA%B0%9D%EC%B2%B4%EB%A5%BC-%EC%83%9D%EC%84%.. 더보기 20190917 1. String 함수 중 valueOf에 대해 https://m.blog.naver.com/PostView.nhn?blogId=yysvip&logNo=220105002997&proxyReferer=https%3A%2F%2Fwww.google.com%2F - 사용 방법 : String.valueOf() - 파라미터가 null이면 문자열 null을 만들어서 담는다. - 그외에 Casting, toString으로 변환 가능하나 Casting의 경우 대상이 null이면 NullPointerException이 발생하고 Object 값이 String이 아니면 ClassCastException 발생. toString()의 경우 . 로 사용하기 때문에 대상 값이 null이면 NullPointerException 발생.. 더보기 20190913 오늘은 리액트 네이티브 하나하나 만드는 중. 생각하고 있는 앱의 UI 틀을 미리 짜둬야겠다는 생각 중. 그리고 어제 오늘 계속 또 고군분투했다. 기억하자. npm install -g expo-cli npm install yarn npm expo init (프로젝트 이름) 순서. 자꾸 얀 설치 안해서 빠꾸먹는 거 나뿐. UI나 틀이라도 좋으니까 보여지는 거라도 만들어지면 좋겠다. 그래도 지금 내 핸드폰이랑 바로바로 연동되는 거 너무 좋다. 더보기 20190910 1. String to int, int to String 형변환하는 거 잊음. String to int String f="123"; int t=Integer.parseInt(f); int to String int f=123; String t=Integer.toString(f); https://nota.tistory.com/49 2. int값 여러 개 받는 거 잊음. Scanner sc = new Scanner(System.in); int a=sc.nextInt(), b=sc.nextInt(); https://limkydev.tistory.com/170 3. 포맷 형태로 출력하는 거 잊음. int age=10; System.out.printf("%d%n",age); https://keep-cool.tist.. 더보기 Whitelabel Error Page 1 Whitelabel Error Page * 상황 - Spring 실습 중에 Spring Boot App으로 실행해서 웹브라우저에서 창 띄우고 나서 에러 발생 * 원인 - 아래에 길게 어디서 에러가 났는지 자세히 나와있지만 너무 눈이 아파서 가장 마지막에 검출된 에러를 보니 mysql Driver의 문제였음 * 해결 application.properties 파일 내 spring.datasource.url에서 database의 server 주소를 수정해줌. spring.datasource.url=jdbc:mysql://localhost:3306/student1?useUnicode=yes&characterEncoding=UTF-8&allowMultiQueries=true&serverTimezone=UTC 노란.. 더보기 20190510 https://www.youtube.com/watch?v=Qc-D9oPKQt4 아이디어가 생기면 검색이나 친구, 지인에게 아이디어를 말하지 말자. 그리고 7일간 그 아이디어에 내가 생각한 것만 추가하는 것. 그 후에 검색해서 이미 존재하는 제품과 비교를 하면 오히려 내 아이디어가 더 좋은 제품일 수 있다. 더보기 백준 런타임 에러 나는 이유 배열에 할당된 크기를 넘어서 접근했을 때 전역 배열의 크기가 메모리 제한을 초과할 때 지역 배열의 크기가 스택 크기 제한을 넘어갈 때 0으로 나눌 때 라이브러리에서 예외를 발생시켰을 때 재귀 호출이 너무 깊어질 때 이미 해제된 메모리를 또 참조할 때 프로그램(main 함수)이 0이 아닌 수를 반환했을 때 입력예시, 출력예시와 다른 format으로 코드를 구현했을 때 입력을 받아들이는 배열의 크기를 너무 작게 줬을 때 배열 인덱스를 잘못 줬을 때 출처 : https://www.acmicpc.net/board/view/22980 더보기 [Git] ![rejected] master -> master (non-fast-forward) ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/jejecrunch/vuejs' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. * 원인 - 깃허브에 생성된.. 더보기 이전 1 ··· 10 11 12 13 14 다음