| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 프론트개발공부
- 엘리스 AI 트랙 5기
- 개발공부
- 엘리스 ai 트랙
- [파이썬 실습] 중급 문제
- [AI 5기] 연습 문제집
- 코드스테이츠
- leetcode
- RN 프로젝트
- 엘리스
- reactnativecli
- 자바스크립트 날씨
- 자바스크립트 split()
- 개발일기
- 자바스크립트 sort()
- 코딩부트캠프
- 부트캠프
- 자바스크립트 날씨 웹 만들기
- 자바스크립트 reduce()
- HTML
- [파이썬 실습] 심화 문제
- JavaScript
- [파이썬 실습] 기초 문제
- 프로그래머스
- 리트코드
- 날씨 웹 만들기
- 자바스크립트
- 프론트개발
- 간단한 날씨 웹 만들기
- 삼항연산자
- Today
- Total
목록전체 글 (287)
개발조각
안녕하세요. 개발조각입니다.😊 으 슬슬 문제 어려워져서 결국 easy를 풀었습니다. https://leetcode.com/problems/search-insert-position/ Search Insert Position - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이번 문제는 쉬운데 이해력이 딸리는 건지?를 띄우면서 풀었습니다. 간단하게 문제에 대해 설명하자면 Input: nums = [1,3,5,6], target = 5 Output: 2 위의 예시와 ..
안녕하세요. 개발조각입니다.😊 이번 문제는 내장 함수를 쓰면 쉬운 문제라 내장 함수 쓰고 끝내버렸습니다. https://leetcode.com/problems/divide-two-integers/ Divide Two Integers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이문제는 dividend / divisor 한 값에 소수점을 버리고 정수부 분만 가지고 오는 문제입니다. Math.floor()를 생각하실 수 있겠지만 아쉽게도 Math.floor()..
문제 https://leetcode.com/problems/find-the-index-of-the-first-occurrence-in-a-string/ Find the Index of the First Occurrence in a String - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 해결방안 var strStr = function(haystack, needle) { const regex = new RegExp(needle); let found = hay..
안녕하세요. 개발조각입니다.😊 이번 문제는 26번의 연장선 문제입니다. https://leetcode.com/problems/remove-element/ Remove Element - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이문제를 두 번 푸니까 이제야 완전히 이해가 가네요. 해결방안 var removeElement = function(nums, val) { let count = 0; for(let i=0; i
다시 일주일이 지나갔습니다. 역시나 너무 피곤한 한 주입니다.😂 이번 주 12주 차는 파이썬 데이터 분석입니다. 이번 주는 파이썬 위주로 주로 배웠고 Numpy, Pandas도 배웠습니다. 실시간은 힘들었습니다... 이게 실시간 2번 안에 모든 내용을 설명한다는 자체가 무리인 것 같아요... 이게 사람이 10시부터 6시까지 계속 집중하면서 수업을 못하잖아요ㅠ 힘들어서 잠시 집중력이 흐트러져서 못 들으면 그 순간 끝납니다ㅋㅋㅋ 이번에도 그렇게 놓친 게 몇 개인지 모르겠어요ㅠㅠ 엉엉 한번 놓치니까 듣기 싫어지고 어떻게 푸는지도 모르겠고 힘들었습니다. 온라인은 강의하시는 코치님이 좋았습니다. 파이썬을 잘 가르치시더라고요. 화, 목 수업은 괜찮았는데 금요일은 다른 분이 강의를 해주셨지만 별로였습니다. 열심히 들..
안녕하세요. 개발조각입니다.😊 이번 문제는 솔직히 말자체가 이해가 안 가서 검색해서 찾아봤어요. 아마 제블로그를 보신다면 저와 같이 문제 자체가 이해가 안 가서 보신 분들이겠죠? https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Remove Duplicates from Sorted Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 아래 블로그를 참고해서 풀었습니다. https://r..
안녕하세요. 개발조각입니다.😊 이번 문제도 어떻게 풀어야 될지 몰라서 검색해서 풀어보았습니다. 이번 문제 계기로 재귀 함수를 어떻게 써야 되는지 파악하게 된 것 같아서 기분이 좋아요~ https://leetcode.com/problems/generate-parentheses/ Generate Parentheses - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 아래의 블로그를 참고해서 풀어보았습니다. https://underdog11.tistory.com/en..
안녕하세요. 개발조각입니다.😊 이번 문제는 알고리즘 문제 풀면 무조건 보는 문제인 것 같아요. 저도 이전에 프로그래머스에서 풀었었는데 또 보니까 반갑네요. https://leetcode.com/problems/valid-parentheses/ Valid Parentheses - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이번 문제는 쉬우니 빠르게 해결방안에 대해 설명하겠습니다. 해결방안 var isValid = function(s) { bracketMap =..