728x90

코딩 테스트/leetCode 46

[leetCode] 1342. Number of Steps to Reduce a Number to Zero (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/ Number of Steps to Reduce a Number to Zero - 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 정수 num 이 주어진다. 짝수라면 2로 나누고 홀수라면 1를 뺀다. 이를 0이 될 때까지 반복한 횟수를 출력하는 문제. class Solution: def numberOfSt..

[leetCode] 412. Fizz Buzz (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/fizz-buzz/ Fizz Buzz - 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 정수 n이 주어지면 배열을 답으로 반환한다. 반환 값 원소의 데이터 타입은 문자열이며 배열의 원소가 3과 5로 나눠지면 "FizzBuzz", 3은 "Fizz", 5는 "Buzz" 로 출력하고 어느 것에도 해당하지 않는 원소는 자료형만 바꾸어 그대로 출력한다. class Solution: def..

[leetCode] 1480. Running Sum of 1d Array (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/running-sum-of-1d-array/ Running Sum of 1d 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 nums 라는 배열이 주어지면 0번째 인덱스만 그대로 두고 나머지는 이전 요소의 값을 모두 더해서 새로운 리스트로 반환하는 문제. * 1d array : 1차원 배열 (One Dimentional- Array) class Solution: de..

[leetCode] 989. Add to Array-Form of Integer (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/add-to-array-form-of-integer/ Add to Array-Form of Integer - 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 배열 형식의 정수는 왼쪽에서 오른쪽 순서로 숫자를 나타낸다. 예를 들면 정수 1321는 array form으로 [1,3,2,1] 이다. 주어진 배열 형식의 숫자와 정수 k를 더한 후, 그 값을 다시 배열 형식으로 return ..

[leetCode] 1672. Richest Customer Wealth (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/richest-customer-wealth/ Richest Customer Wealth - 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 정수로 이루어진 m x n 의 그리드 행렬이 주어진다. [i][j] 은 i번째 손님이 j은행에 가지고 있는 재산의 양이다. 가장 부유한 손님의 재산을 return하라. 손님의 재산은 모든 은행의 자산을 합친 값이다. 문제만 읽었을 때는 바로 와..

[leetCode] 2011. Final Value of Variable After Performing Operations (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/final-value-of-variable-after-performing-operations/ Final Value of Variable After Performing Operations - 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 하나의 변수 X와 4가지 연산자를 가진 언어가 있다. ++가 붙으면 변수 X의 값을 1씩 증가, --는 1씩 감소시킨다. 초기 X값은 0이며 주..

728x90