일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 볼륨 만들기
- 삼성역테
- 재귀함수
- Bfs와DFS
- 주사위굴리기2
- 자바 코테
- 백준2251
- 백준
- 완탐
- 코테
- java
- 자바
- 알고리즘
- 정올 1620
- 알고리즘개념
- 백준15652
- 중복조합
- N과M
- 전화번호속의암호
- BFS
- 파티션 크기 조정
- 에라토스테네스의채
- 백준13458
- 23288
- 완전탐색
- D드라이브생성
- 코테준비
- 중복순열
- 순열
- 정보처리기사
- Today
- Total
목록전체 글 (143)
뚱땅뚱땅
알고리즘 문제 해결 전략 - BOGGLE 문제 재귀 함수 이용 #include #include #include using namespace std; const int dx[8] = {-1,-1,-1,0,0,1,1,1}; const int dy[8] = {-1,0,1,-1,1,-1,0,1}; char board[5][5]; bool hasWord(int y, int x, const string& word); bool isRange(int y, int x); int main() { int testcase; //char board[5][5]; string board_sentence; int howmany_word; vector words; string temp; cin>> testcase; for (int i..
During the Android project, I’ve frequently got ‘cannot resolve the symbol’ error. A bunch of variables of the standard library was red and the auto-completion had stopped working. So, I’m going to write about how I solved my problem. Clean project -> rebuild project Try this method first. It is very simple but effective. Click ‘Clean Project’ , and then ‘Rebuild project’. sync project with grad..
1. Flutter ? - 구글에서 만든 프레임워크. 크로스 플랫폼 개발 용이함. - IOS의 스토리보드나 Android의 xml : 다른 데서 UI 만들고, 앱 상에서 UI를 불러오는 방식으로 코딩 했었는데 Flutter는 다름! (EX 01) import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); // 앱 실행 class MyApp extends StatelessWidget{ // 상태 변경 없는 위젯. 한번 UI가 그려지면 그대로 있음. @override Widget build(BuildContext context){ // UI 만드는 부분 return new MaterialApp( // MaterialApp Desig..