https://accounts.google.com/signin/v2/identifier?service=cloudconsole&passive=1209600&osid=1&continue=https%3A%2F%2Fconsole.cloud.google.com%2Fapis%2Fcredentials%2Fconsent%3Fproject%3Dwolrdcup&followup=https%3A%2F%2Fconsole.cloud.google.com%2Fapis%2Fcredentials%2Fconsent%3Fproject%3Dwolrdcup&flowName=GlifWebSignIn&flowEntry=ServiceLogin Google Cloud Platform 하나의 계정으로 모든 Google 서비스를 Google Cloud ..
/* get input */ let numbers = [7, 0, 8, 2, 8, 3, 1, 5, 7, 6, 2]; let hand = "left"; /* get input end */ /* solve */ function solution(numbers, hand) { var answer = ""; let left = { x: 1, y: 1 }; let right = { x: 3, y: 1 }; let numberArr = []; let numberAnswerArr = []; let userHand = hand[0].toUpperCase(); for (let i = 1; i < 4; i++) { for (let j = 1; j < 5; j++) { numberArr.push({ x: i, y: j });..
/* get input */ let id_list = ["muzi", "frodo", "apeach", "neo"]; let report = [ "muzi frodo", "apeach frodo", "frodo neo", "muzi neo", "apeach muzi", ]; let k = 2; /* get input end */ /* solve */ function solution(id_list, report, k) { var answer = []; let countReport = []; for (let i = 0; i < id_list.length; i++) { countReport.push({ id: id_list[i], count: 0, reportUser: [] }); } for (let i = ..
문제 N개이 숫자가 입력되면 오름차순으로 정렬하여 출력하는 프로그램을 작성하세요. 정렬하는 방법은 버블정렬입니다. 풀이 function solution(arr) { let answer = arr; for (let i = 0; i arr[j + 1]) { [arr[j], arr[j + 1]] = [arr[j + 1], arr[j]]; } } } return answer; } let arr = [13, 5, 11, 7, 23, 15]; console.log(solution(arr)); 앞,뒤를 비교해서 큰것이 있으면 순서를 바꾸어주는 버블 정렬을 배웠습니다.
프리온 보딩에서는 과제마다 각 기업이 요구하는 기술을 바탕으로 과제를 진행하는 방식입니다. 여덟 번째 데이터 목록 페이지 만들기 파일의 목록과 파일의 상세 데이터를 표시하는 페이지를 만들었습니다. 배포 깃 허브 링크 https://github.com/Gilpop8663/08_link_data GitHub - Gilpop8663/08_link_data: 원티드 프론트앤드 프리온보딩 2기 14팀 정보를 담는 리스트 페이지 프 원티드 프론트앤드 프리온보딩 2기 14팀 정보를 담는 리스트 페이지 프로젝트입니다. Contribute to Gilpop8663/08_link_data development by creating an account on GitHub. github.com 기능 구현 (맡았던 부분) Axi..
원티드 프리온 보딩 프론트 앤드 4주 차 일곱 번째 수업 TIL (22.01.24~22.03.03) 프리온 보딩 프론트 앤드의 강사님은 위 코드의 공동 창업자&이사의 직책을 가지고 계신 김예리 님이 강의를 해주셨습니다. 크로스 브라우징 - javascript step1. react-app-polyfill 설치 yarn add react-app-polyfill react-app-polyfill: CRA 공식 설명 참고! step 2. polyfill import // These must be the first lines in src/index.js import 'react-app-polyfill/ie11'; import 'react-app-polyfill/stable'; step3. node_modules..
문제 N개이 숫자가 입력되면 오름차순으로 정렬하여 출력하는 프로그램을 작성하세요. 정렬하는 방법은 선택 정렬입니다. 풀이 function solution(arr) { let answer = arr; for (let i = 0; i < arr.length; i++) { let idx = i; console.log(idx); for (let j = i + 1; j < arr.length; j++) { console.log(arr[j], arr[idx]); if (arr[j] < arr[idx]) idx = j; } [arr[i], arr[idx]] = [arr[idx], arr[i]]; } return answer; } let arr = [13, 5, 11, 7, 23, 15]; console.log(sol..
https://developer.mozilla.org/ko/docs/Web/CSS/white-space white-space - CSS: Cascading Style Sheets | MDN CSS white-space 속성은 요소가 공백 문자를 처리하는 법을 지정합니다. developer.mozilla.org pre-wrap 연속 공백 유지. 줄 바꿈은 개행 문자와 요소에서 일어나며, 한 줄이 너무 길어서 넘칠 경우 자동으로 줄을 바꿉니다. pre-line 연속 공백을 하나로 합침. 줄바꿈은 개행 문자와 요소에서 일어나며, 한 줄이 너무 길어서 넘칠 경우 자동으로 줄을 바꿉니다. 혹은 pre를 사용하셔도 됩니다.
- Total
- Today
- Yesterday
- 노개북
- 초보
- 위코드
- React
- Storybook
- electron
- import/order
- 윤성우 열혈C프로그래밍
- 프리온보딩
- javascript
- WSL2
- TopLayer
- NextRequest
- createPortal
- 아차산
- 원티드
- 프론트앤드
- NextApiRequest
- nextjs
- env
- 스토리 북
- 우아한테크코스
- nodejs
- C언어
- error
- 노마드코더
- 북클럽
- CLASS
- jest
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |