| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Baekjoon
- 프로그래머스
- 더현대서울 맛집
- Kaggle
- gs25
- 캐치카페
- 편스토랑 우승상품
- hackerrank
- 코로나19
- dacon
- 데이콘
- 프로그래머스 파이썬
- github
- 우분투
- PYTHON
- Real or Not? NLP with Disaster Tweets
- Docker
- programmers
- ChatGPT
- Git
- ubuntu
- 파이썬
- leetcode
- 금융문자분석경진대회
- SW Expert Academy
- 자연어처리
- AI 경진대회
- 맥북
- 백준
- 편스토랑
- Today
- Total
목록
반응형
전체 글 (1653)
솜씨좋은장씨
# LEGO # 레고 76914 # SPEED CHAMPIONS # Ferrari 812 Competizione 예전에 출시되었고 현재는 판매하고 있지 않던 Ferrari F8 Tributo 를 구하고 싶어서 열심히 알아보다가 잠시 바쁜 나날에 레고에 관심을 잠시 덜 두고 지내던 와중에! 이번 2023년 스피드 챔피언 신제품으로 페라리 812 컴페티치오네가 출시되었다고 하여 간만에 구매해서 조립해보았습니다. 🏎️ 가격 레고 76914 Ferrari 812 Competizione 의 가격은 레고 공식 홈페이지 기준으로 34,900원 입니다. 🏎️ 구성 / 브릭수 브릭 수 설명서 브릭 봉투 스티커 261개 1개 2개 1개 🏎️ 조립 시간 조립에는 약 1시간의 시간이 소요되었습니다. 천천히 🏎️ 조립 완성 모..
코딩 1일 1문제! 오늘의 문제는 leetCode 의 Find the Difference of Two Arrays 입니다. Find the Difference of Two Arrays - LeetCode Can you solve this real interview question? Find the Difference of Two Arrays - Given two 0-indexed integer arrays nums1 and nums2, return a list answer of size 2 where: * answer[0] is a list of all distinct integers in nums1 which are not present in nums2 leetcode.com 👨🏻💻 문제 풀이 set..
코딩 1일 1문제 오늘의 문제는 leetCode 의 Check if Every Row and Column Contains All Numbers 입니다. Check if Every Row and Column Contains All Numbers - LeetCode Can you solve this real interview question? Check if Every Row and Column Contains All Numbers - An n x n matrix is valid if every row and every column contains all the integers from 1 to n (inclusive). Given an n x n integer matrix matrix, return tru..
코딩 1일 1문제! 오늘의 문제는 leetCode 의 Number of Zero-Filed Subarrays 입니다. Number of Zero-Filled Subarrays - LeetCode Can you solve this real interview question? Number of Zero-Filled Subarrays - Given an integer array nums, return the number of subarrays filled with 0. A subarray is a contiguous non-empty sequence of elements within an array. Example 1: Input: nums = leetcode.com 👨🏻💻 문제 풀이 - SOMJANG 정답..
코딩 1일 1문제! 오늘의 문제는 leetCode 의 Adding Two Negabinary Numbers 입니다. Adding Two Negabinary Numbers - LeetCode Can you solve this real interview question? Adding Two Negabinary Numbers - Given two numbers arr1 and arr2 in base -2, return the result of adding them together. Each number is given in array format: as an array of 0s and 1s, from most significant bit t leetcode.com 👨🏻💻 문제 풀이 - SOMJANG Neg..
코딩 1일 1문제! 오늘의 문제는 leetCode 의 Minimum Absolute Difference 입니다. Minimum Absolute Difference - LeetCode Can you solve this real interview question? Minimum Absolute Difference - Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of pairs in ascending order(with respect t leetcode.com 👨🏻💻 문제 풀이 - SOMJANG 입력 받은..
코딩 1일 1문제! 오늘의 문제는 백준의 Missing Numbers 입니다. 17588번: Missing Numbers The first line of input contains a single integer n, where 1 ≤ n ≤ 100. Each of the next n lines contains one number that the child recited. Each recited number is an integer between 1 and 200 (inclusive). They are listed in increasing order, and there www.acmicpc.net 👨🏻💻 문제 풀이 set 을 활용하여 문제를 풀었습니다. 입력 받은 수에서 가장 큰 수를 찾고 이 수와 ra..
코딩 1일 1문제! 오늘의 문제는 백준의 Oddities 입니다. 10480번: Oddities Some numbers are just, well, odd. For example, the number 3 is odd, because it is not a multiple of two. Numbers that are a multiple of two are not odd, they are even. More precisely, if a number n can be expressed as n = 2 ∗ k for some integer k, then n www.acmicpc.net 👨🏻💻 코드 ( Solution ) def oddities(n): return f"{n} is even" if n % 2 == 0..