Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해커톤
- 취업
- react
- DOM
- 초보
- 코드스테이츠
- nqueens
- 자바스크립트
- this
- vscode
- 개발
- array
- method
- 연습
- JS
- JavaScript
- underscores
- ftech
- 공부
- 포스기
- underbar
- Instantiation Patterns
- 코딩
- grpahQL
- 알고리즘
- 리액트
- 제일어려워
- 일상
- 엔퀸즈
- 클라이언트
Archives
- Today
- Total
analogcoding
7/16 -2주 프로젝트 본문
Toy 28번 문제. Binary Heap 정렬 후 탐색.
BinaryHeap.prototype.insert = function(value) {
console.log("후", this._heap);
this._heap.push(value);
console.log("후", this._heap);
function compareNumbers(a, b) {
return a - b;
}
this._heap.sort(compareNumbers);
console.log("후", this._heap);
};
BinaryHeap.prototype.removeRoot = function() {
if (!this._heap.length) {
return undefined;
}
let removeOne = this._heap[0];
console.log("전", this._heap);
this._heap = this._heap.slice(1);
return removeOne;
};
가이드 라인 작성 팁!
read ME 파일에 start 방식이나 간단한 설명과정이 적힌 문서 작성 .
ex) how to get start , how to control
UI 에서 요청이 있을 때 fake 텀을 줄 수도 있다.
네비게이션으로 props 넘기기
2번 째 인자로 props 형태로 전달하고
받을 땐 this.props.navigation.state.params. props Name .
state 에 넣어서 사용해야하는 것 같다. 정확하게 뭘 짚고 넘어가고 싶은데 시간이 촉박하다..ㅠㅠ
'Be well coding > In Immersive' 카테고리의 다른 글
7/18 - 2주 프로젝트 (0) | 2019.07.21 |
---|---|
7/17 - 2주 프로젝트 (0) | 2019.07.18 |
7/15 - 2주 프로젝트 (0) | 2019.07.16 |
7/13 - 2주 프로젝트 (0) | 2019.07.13 |
7/12 - 2주 프로젝트 (0) | 2019.07.13 |
Comments