본문 바로가기

분류 전체보기

(174)
[Leetcode] 511. Game Play Analysis I https://leetcode.com/problems/game-play-analysis-i/ # Write your MySQL query statement below select player_id, min(event_date) as first_login from Activity group by player_id;
[Leetcode] 1342. Number of Steps to Reduce a Number to Zero https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/ class Solution: def numberOfSteps(self, num: int) -> int: count = 0 while num != 0: if num % 2 == 0: num //= 2 else: num -= 1 count += 1 return count
[Leetcode] 412. Fizz Buzz https://leetcode.com/problems/fizz-buzz/ class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1, n+1): if ((i % 3 == 0) and (i % 5 == 0)): result.append('FizzBuzz') elif (i % 3 == 0): result.append('Fizz') elif (i % 5 == 0): result.append('Buzz') else: result.append(str(i)) return result
[Leetcode] 1672. Richest Customer Wealth https://leetcode.com/problems/richest-customer-wealth/ int maximumWealth(int** accounts, int accountsSize, int* accountsColSize){ int max = 0; for (int i = 0; i max) { max = sum; } } return max; }
[Leetcode] 1480. Running Sum of 1d Array https://leetcode.com/problems/running-sum-of-1d-array/ /** * Note: The returned array must be malloced, assume caller calls free(). */ int* runningSum(int* nums, int numsSize, int* returnSize){ int* result = (int *)malloc(sizeof(int) * numsSize); memset(result, 0, sizeof(int) * numsSize); *returnSize = numsSize; for (int i=0; i < numsSize; i++) { for (int j=0; j
windows에서 압축한 zip파일을 mac os에서 압축 해제 압축 파일 내 한글명 파일이 포함되어 있을 경우 인코딩 문제로 정상적으로 압축해제 되지 않음 압축 해제 성공해도 파일이 정상적으로 열리지 않음 아래 명령어를 사용해서 압축 해제하면 정상적으로 파일 사용 가능 ditto -V -x -k --sequesterRsrc --rsrc
귀여운 만석공원 길냥이들 나만 볼 수 없지 https://youtube.com/shorts/k_vx6ski9Ts?feature=share 3월 말쯤 벚꽃 구경 갔다가 만난 고양이들! 기분 안좋을 때마다 돌려보는중! 시비털고 도망가시던 분과 모델처럼 앉아있던 냥님 그리고 아름다웠던 그 날의 노을!
다마고치 분해하기 반려 다마고치를 해부해 보았다. (갑자기?) 한꺼풀 오픈 여기까진 자주 보던 모습이다. 다이소에서 2000원 주고 산 드라이버는 여기저기 아주 요긴하게 쓰인다. 하나 더 열었더니 공대생이 된 기분이 든다 (공대생 맞음) 엥? 화면이 붙어있다. 화면을 살짝 떼어냈더니 이렇게 생겼다. 좀 더 크게 보자. 작은 CPU 같은게 있지 않을까 해서 분해했는데 뭐가 뭔지 하나도 모르겠다! 회로 기판에 쓴다는 기호를 찾아봐도 모르겠다. 이런걸 기대했는데 없어서 속상하다. 다시 닫아야겠다. 잘 작동하는지 보려고 했는데 건전지도 없다. 2032 사러 가야지..

728x90