To-do Udemy Java The for Statement For Loop Recap Sum 3 and 5 Chanllenge 코딩연습 13: Sum odd The While and Do While Statement freeCodeCamp 알고리즘 복습 알고리즘 문제 2개 이상 풀기 Today was... loop는 js나 java나 문법이 똑같아서 간단하게 듣고 넘겼다. 오늘 밤에 여행을 떠나기 때문에 다음 TIL은 다음 주가 될 것 같다! Do Next 여행가서 잘 쉬기
To-Do Udemy Java The for Statement For Loop Recap Sum 3 and 5 Chanllenge 코딩연습 13: Sum odd The While and Do While Statement Udemy JS Modules Command Line Developer Environment freeCodeCamp Functional Programming 다 끝내기 Today was... Module을 들었는데 어려웠다. freeCodeCamp에서 배웠던 것들이 어렴풋이 나와서 다시 풀어봐야겠다고 생각했다. 오늘은 너무 피곤한 나머지 정말 조금밖에 못했다. 여행 준비때문에 이것저것 챙기고 신경쓰니 그렇다. 우아한테크코스 코딩테스트는 떨어져서 아쉬웠다. 그래도 계속 열심히 해놓아야 다음..
Switch package com.Hazel; public class Main { public static void main(String[] args) { int value = 1; // if(value == 1) { // System.out.println("Value is 1"); // } else if(value== 2) { // System.out.println("Value is 2"); // } else { // System.out.println("Was not 1 or 2"); // } int switchValue = 4; switch (switchValue) { case 1: System.out.println("Value was 1"); break; case 2: System.out.print..
To-Do Udemy Java Control Flow Statements Intro The switch statement Day of the week challenge 코딩연습 12 ~ 13 Udemy JS How javascript works modules command line freeCodeCamp Functional Programming 5문제 이상 풀기 Today was... Java 강의를 그냥 듣기만 하는 것보다는 문제를 같이 푸는게 좋을 거 같아서 hackerrank 문제를 같이 풀어보려고 했는데, 바로 막혔다. 흠... Do Tomorrow
To-Do 코딩테스트 도전! (extra) Twittler 가이드북 제작 및 조사 Today was... 우아한테크코스 코딩테스트는 생각했던 것만큼 아주 어렵지는 않았다. 물론 푸는 것 자체보다 어떻게 푸느냐가 중요할텐데, 정작 시작하니 긴장돼서 그냥 막 하드코딩해버린 것 같다... 좀 더 잘 풀 수 있었을텐데, 그런 생각이 든다. 7문제 중 6문제를 제출했고 한 문제는 아예 손도 못 댔다. 테스트 결과는 다음 주 화요일날 3시에 발표된다고 한다. Do-Tomorrow freeCodeCamp ES6 부분 다시 풀기 freeCodeCamp functional progrmmingUdemy JAVA
코드스테이츠 프리코스 후기 벌써 코드스테이츠 프리코스를 시작한지 2달이 되었다는 것이 신기하다. 이 코스를 등록할 때 나는 회사에 다니며 미래를 고민하고 있었다. 지금은 회사를 그만두고 개발을 공부한 지 한 달 정도가 되었다. 정말 코딩에 대해서 어떠한 경험도 지식도 없이 시작했는데, 지금의 나는 그 때에 비해 굉장히 많은 것을 알게 된 것 같다. 코드스테이츠 프리코스를 하면서 좋았던 점 첫 번째는 과제이다. 물론 지금도 미제출한 과제가 있고 아직 다 하지는 못했지만, 과제와 씨름하면서 특히 문제 푸는 능력이 향상됐던 것 같다. 가끔은 너무 어려운게 아닌가 싶기도 했지만, 그러면서 실력이 늘어가는 거라고 생각하니 오히려 어려운 것이 좋다고 생각하게 됐다. 쉬운 것만 풀어서 금세 다 맞히면 기분은 좋겠지만..
To-DofreeCodeCamp - 프로토타입 복습- functional Programming 5문제 이상Udemy Java- 나머지 코딩 연습- control flow 들어가기Udemy JS- Command Line까지 Today was...학교 가서 공부했더니 더웠다Method Overloading을 배웠다!js 강의는 언제 듣지....... Do-Tomorrow우아한테크코스 온라인 데모테스트 해보기Java Control Flow freeCodeCamp Functional Programming 끝내기
Code Exercise package com.Hazel; public class Main { public static void main(String[] args) { int score = 1500; int scorePosition = calculateHighScorePosition(score); displayHighScorePosition("Hazel", scorePosition); score = 900; scorePosition = calculateHighScorePosition(score); displayHighScorePosition("Ryan", scorePosition); score = 400; scorePosition = calculateHighScorePosition(score); disp..
To-DoUdemy JAVA 강좌 듣기- 29. More On Methods And a Challenge- 30. Method Challenge- 31. Diffmerge Tool Intro- 32. Install DiffMerge- 33. Using DiffMerge- 34. Coding Exercise- 35. Coding Exercise ex part 1- 36. Coding Exercise ex part 2- 37. Coding Exercise ex part 3- 38. Method overloading - 39. Method overloading recap- 40. Seconds and Minute Challenge- 41. Bounus Challenge Sol - 코딩연습 1 ~ 11코딩연습 ..
Functional Programming TerminologyThe functions that take a function as an argument, or return a function as a return value are called higher orderfunctions. When the functions are passed in to another function or returned from another function, then those functions which gets passed in or returned can be called a lambda. Functions that can be assigned to a variable, passed into another function..
A more efficient way is to set the prototypeto a new objectAdd the property numLegsand the two methods eat()and describe()to the prototypeof Dogby setting the prototypeto a new object.There is one crucial side effect of manually setting the prototypeto a new object. It erased the constructorproperty! To fix this, whenever a prototype is manually set to a new object, remember to define the constr..
To-DoUdemy JAVA 강좌 듣기- 13. First steps - creating your first Java program- 14. Exploring IntelliJ IDEA- 15. Variables, Datatypes and Operators Intro- 16. What are Variables?- 17. Getting to know primitive types(Byte, Short, Int and long)- 18. Getting to know primitive types(Float and Double)- 19. Getting to know primitive types(Char and Boolean)- 20. Uderstanding Strings and Finishing up primiti..
ES7 'Helloooo'.includes('o'); // true const pets = ['cat', 'dog']; pets.includes('cat'); // true const sqaure = (x) => x**2 square(2); // 4 square(5); // 25 const cube = (x) => x**3 cube(3); // 27 ES8 .padStart() .padEnd() 'Turtle'.padStart(10); // " Turtle" 합쳐서 total 10 스페이스 'Turtle'.padEnd(10); // "Turtle " 합쳐서 total 10 스페이스 const fun = (a,b,c,d,) => { console.log(a); } fun(1,2,3,4,); // print..
To-DoHello Coding 그림으로 개념을 이해하는 알고리즘 읽기(퀵정렬 부분)Udemy - Advanced JS- Advanced Objects- Upcoming Videos- Pass by value VS Pass by reference- Type Coercion- Exercise: Advanced Objects- ES7- Exercise: ES7- ES8- Exercise: ES8Udemy - JAVA IntroJDK랑 IntelliJ IDEA 설치freeCodeCamp OOP 문제 5개 이상 풀기 우아한 테크코스 제출다 썼지만 제출은 다음에(왠지 고쳐야 할 것 같아서) 티스토리에 마크다운 적용하기코드를 너무 그냥 복붙하니 시각적으로 별로라 markdown으로 예쁘게 써보려고 했는데 일단 신택..
- Total
- Today
- Yesterday
- 알고리즘
- package.json
- oracle
- 인스턴스
- CSS
- c언어
- 리덕스
- linkedlist
- 자바
- rxjs
- Java
- react
- useEffect
- this
- GIT
- Session
- jQuery
- SQL
- Conflict
- 개발 공부
- 포인터 변수
- Prefix Sums
- JavaScript
- youtube data api
- 깃
- Data Structure
- 제네릭스
- Redux
- getter
- til
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |