일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stateful widget 생명주기
- 오버라이딩과 오버로딩 차이점
- static import문
- static 메서드
- 오버로딩
- 조상의 생성자
- this()
- stateless widget
- 운영체제의 구조
- PriorityQueue
- 프로그래머스
- stateful widget
- object클래스
- 운영체제의 예
- 명예의전당(1)
- webview_flutter
- 객체 배열
- 운영체제의 분류
- 참조형 매개변수
- this()와 참조변수 this 차이점
- 이것이코딩테스트다
- 참조형 반환타입
- 초기화 순서
- 기본형 매개변수
- FLUTTER
- 호출스택
- 운영체제란 무엇인가
- 클래스 변수
- 인스턴스 메서드
- 운영체제의 목적
- Today
- Total
목록분류 전체보기 (81)
Coram Deo
- substring을 이용한 풀이substring을 이용하여 주어진 인덱스 n에 해당하는 문자를 원래 문자열의 맨앞에 붙인 다음 정렬해준다.정렬이 끝나면 맨 앞글자 빼고 answer배열에 넣어준다.import java.util.*;class Solution { public String[] solution(String[] strings, int n) { // substring을 이용하자 ! String[] answer = new String[strings.length]; for(int i=0; i
1. 나의 풀이import java.util.*; class Solution { public int[] solution(int[] array, int[][] commands) { // array를 i부터 j까지 잘라서 다른 배열에 옮긴다. // 새로운 array를 정렬한다. // k번째 인덱스에 해당하는 새로운 array값을 answer배열에 넣는다. int[] answer = new int[commands.length]; int j=0; for(int[] command : commands){ int length = command[1] - command[0] + 1; int[] newA..
1. 나의 코드class Solution { public int solution(int[][] sizes) { // 최소 직사각형 // 가로와 세로 둘중 더 긴 길이를 가로에 넣는다. // 가로 중 가장 긴 길이 * 세로 중 가장 긴 길이 int answer = 0; for(int i=0; i maxW){ maxW = sizes[j][0]; } if(sizes[j][1] > maxH){ maxH = sizes[j][1]; } } answer = maxW * maxH; return answe..

Firebase연동중 flutterfire 명령어를 인식하지 못했던 문제 해결 ! 첫번째 에러Firebase 연동을 하려면 아래 두가지 명령어를 실행해야한다. - 문제두번째 명령어인 flutterfire 명령어를 아래와 같이 인식하지 못했다. * 에러 메시지bash: flutterfire.bat: command not found'flutterfire' is not recognized as an internal or external command, operable program or batch file. - 원인 환경변수 등록을 안해주어서 ! 첫번째 명령어를 실행하고 나서 아래와 같은 경고가 떴었다.Warning: Pub installs executables into C:\Users\PC\AppData\L..