일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 완전탐색
- englishbook
- 삼성
- 원서
- swexpertacademy
- English
- 쉬운 알고리즘 문제
- 알고리즘
- 코테 준비
- 직무면접
- 프로그래머스
- nightroutine
- D4
- 코테
- PyQt
- STUDYENGLISH
- 백준
- 코테 대비
- dfs
- 알고리즘 문제
- sw expert
- 원서읽자
- the midnight library
- SQL
- 코딩테스트
- MySQL
- sw expert academy
- 원서읽기
- readingbook
- BFS
- Today
- Total
목록분류 전체보기 (172)
시나브로
kakaoDevelopers에서 로그인한 후, 내애플리케이션 - 설정 - 일반 - 기본정도 - 플랫폼 있다. - 만약 내애플리케이션을 만들지 않았을 경우, 애플리케이션부터 추가해준다. 1. 패키지명 androidManifest.xml 파일에 보면 에 잇는 package값을 넣어주면 된다. 2. 마켓 url 위의 패키지명을 채우면 알아서 변경된다. 3. 키 해시 키 해시는 필수항목은 아니지만, 카카오톡 sdk, 페이스북 sdk등과 연동하기 위해서는 반드시 등록해야된다. 밑에는 내가 키해싱을 얻은 방법이다. 안드로이드 프로젝트을 켜고 alt + f12를 누르면 아랫단에 그림 1 처럼 안드로이드 터미널 창이 뜬다. 만약 뜨지 않는다면, 더보기 file- setting-keymap에 들어가서 terminal을 ..
#include int connect[101][101] = { 0 }; int q = 0; int person_amount = 0; int connect_amount = 0; void search(int list[],int point) { for (int i = 1; i
#include int input[500005] = { 0 }; int num; void quickSort(int first, int last) { int pivot; int i; int j; int temp; if (first < last) { pivot = first; i = first; j = last; while (i < j) { while (input[i] input[pivot]) { j--; } if (i < j) { temp = input[i]; input[i] = input[j]; input[j] = temp; } } temp = input[pivot]; input[pivot] = input[j]; input[j] = temp; quickSort(first, j - 1); quickSort..
#include int start_x = 0; int start_y = 0; int end_x = 0; int end_y = 0; int virtual_reality(int signal,int amount,int x, int y) { if (x == end_x&&end_y == y) return amount; if (signal == 0) { if (x > end_x) return virtual_reality(1, amount + 1, x - 1, y); else return virtual_reality(1, amount + 1, x + 1, y); } else { if (y > end_y) return virtual_reality(0, amount + 1, x, y-1); else return virt..