일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프론트개발공부
- 날씨 웹 만들기
- 프론트개발
- 자바스크립트 sort()
- 엘리스 AI 트랙 5기
- reactnativecli
- 자바스크립트
- [파이썬 실습] 중급 문제
- 부트캠프
- 자바스크립트 날씨
- 삼항연산자
- 자바스크립트 reduce()
- 자바스크립트 날씨 웹 만들기
- 개발공부
- 간단한 날씨 웹 만들기
- 엘리스
- HTML
- 프로그래머스
- [파이썬 실습] 기초 문제
- 엘리스 ai 트랙
- 리트코드
- 코딩부트캠프
- 개발일기
- RN 프로젝트
- 코드스테이츠
- [AI 5기] 연습 문제집
- JavaScript
- [파이썬 실습] 심화 문제
- leetcode
- 자바스크립트 split()
- Today
- Total
목록leetcode (32)
개발조각

안녕하세요. 개발조각입니다.😊 이번 문제는 이렇게 풀라는 건 아닌데 이걸 하나하나 구현하기에 좀 싫어서 내장 함수를 써서 구해보았습니다. 그래서 그런지 runtime이 정말 안 좋아요.. https://leetcode.com/problems/regular-expression-matching/submissions/ Regular Expression Matching - 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 isMatch = function(..

안녕하세요. 개발조각입니다.😊 이번 문제가 저번 문제와 비슷해서 빠르게 풀었는데 문제 이해를 잘 못해서 생각보다 오래 걸린? 그런 문제였습니다. https://leetcode.com/problems/string-to-integer-atoi/ String to Integer (atoi) - 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 myAtoi = function(s) { let num = parseInt(s); if(num > 2**31-1)..

안녕하세요. 개발조각입니다.😊 이번 문제는 어려운 건 아닌데 풀다가 잘못 생각해서 헤맨ㅋㅋㅋ 그런 문제입니다. https://leetcode.com/problems/longest-palindromic-substring/ Longest Palindromic Substring - 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 longestPalindrome = function(s) { let str = ''; let answer = s[0]; for..

안녕하세요. 개발조각입니다.😊 이번 문제는 쉬워서 빨리 풀고 넘겼습니다. https://leetcode.com/problems/median-of-two-sorted-arrays/ Median of Two Sorted Arrays - 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 findMedianSortedArrays = function(nums1, nums2) { nums = [...nums1, ...nums2].sort((a,b)=> a-b)..

안녕하세요. 개발조각입니다.😊 처음으로 리트코드에서 Medium문제를 풀어서 기분이 좋네요. 그럼 바로 해결방안에 대해 설명하겠습니다. https://leetcode.com/problems/longest-substring-without-repeating-characters/ Longest Substring Without Repeating Characters - 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 lengthOfLongestSubstri..

안녕하세요. 개발조각 입니다.😊 이번에 9. Palindrome Number를 풀어보았습니다. 리트코드의 장점이 런타임, 메모리가 수치로 나오고 그래프로 내가 작성한 코드가 어디인지 알려줍니다. 그래서 프로그래머스에서 문제 풀 때는 내장 함수 쓰고 빨리 풀고 넘겨야지~ 이랬는데 리트코드는 엇... 런타임이 너무 애바인데;;;; 하면서 다른 방법으로 풀어야겠다. 이렇게 되더라고요ㅋㅋㅋ 그럼 해결방안에 대해 설명하겠습니다. https://leetcode.com/problems/palindrome-number/submissions/ Palindrome Number - LeetCode Level up your coding skills and quickly land a job. This is the best pl..

안녕하세요. 개발조각입니다.😊 리트코드에서 첫 문제를 풀었습니다, 일단 Easy를 어느 정도 풀어보려고 합니다. 그럼 1. Two Sum 문제 해결방안에 대해 설명하겠습니다. https://leetcode.com/problems/two-sum/ Two Sum - 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 💚 번역기 돌리면 정수 숫자의 배열과 정수 목표값이 주어지면 목표값에 더해지도록 두 숫자의 인덱스를 반환합니다. 각 입력에 정확히 하나의 솔루션이 있다고 가..

안녕하세요. 개발조각입니다.😊 엘리스를 하다보니 알고리즘이 저 뒷전이 되는 기분ㅠ 취업을 하려면 알고리즘이 필수다보니 지금이라도 꾸준히 해야겠다는 생각이 들어 지금 오늘부터 바로 시작했습니다.🔥 그래서 무엇을 풀지 좀 고민하다가 엘리스에서 코치님이 추천해준 알고리즘 사이트 2개 중 하나인 leetcode를 풀게 되었습니다. 사이트는 아래 링크를 통해서 가면 됩니다.!! LeetCode - The World's Leading Online Programming Learning Platform LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. Th..