1. 상황 Tizen emulators에서 동작하던 tpk가 Active2에서 tpk 설치가 되지 않음. 아래 로그가 발생함. Launching the Tizen application... # If you want to see the detailed information, # please set the logging level to DEBUG in Preferences and check the log file in '/home/sungrae/tizen-studio-data/ide/logs/ide-20191130_002921.log'. [Deploying the package...] RDS: Off [Creating the package...] Created the package: /home/sungrae..
mongo db가 업데이트가 되면서 책에 있는 아래예제가 바로 동작하지 않는다. https://gist.github.com/mithunsatheesh/8adad40b059866e892ed#file-chapter-02-js chapter-02.js GitHub Gist: instantly share code, notes, and snippets. gist.github.com 아래 3가지 에러가 발생을 할 것이고, 1. (node:18886) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlPa..
https://www.acmicpc.net/problem/11657 Bellman ford시간복잡도 : O(E*V)특징 : 모든 간선에 대해서 확인함. (마지막 n번 루프에서 값이 갱신되면 음의 싸이클 존재한다) #include#include#include#include#include#includeusing namespace std; #define MY_MAX 987654321 vector map;int visit[501];int n, m;int flag;void input(){scanf("%d %d", &n, &m);for (int i = 0; i < m; i++) {int a, b, c;scanf("%d %d %d", &a, &b, &c);map.push_back(make_pair(a, make_pa..
