728x90

전체 글 130

[leetCode] 2235. Add Two Integers (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/add-two-integers/ Add 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 class Solution: def sum(self, num1: int, num2: int) -> int: return num1 + num2 정수 타입의 변수 2개를 더해서 반환하는 문제. 이렇게 짧고 기초적인 코드도 더 빠르게 만들 수 있을까 찾아보니 __add__ ..

[leetCode] 1920. Build Array from Permutation (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/build-array-from-permutation/ Build Array from Permutation - 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 *Permutation: 순열 (: 고정된 개수를 가진 수들을 일정 규칙에 따라 순서대로 나열한 수열) 수열 nums 가 input으로 주어진다. 인덱스 값을 다시 인덱스로 사용해서 만든 새로운 순열을 반환하는 문제. #최초 ..

[leetCode] 1929. Concatenation of Array (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/concatenation-of-array/ Concatenation of 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가 주어진다. nums의 원소를 한 번 더 반복해서 가지는, 새로운 배열 ans를 반환하는 문제. # for문과 append() class Solution: def getConcatenation(self, nums: List[in..

[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이며 주..

HTML의 임베디드 요소 - <img>, <video>, <audio>, <canvas>, <iframe>

임베디드 요소 embedded :끼워넣은, 내장된 단어 자체의 의미는 위와 같다. html에서 임베디드 요소란 직접 코드를 작성하는 것이 아니라, 외부의 소스를 가져와 삽입하는 요소를 뜻한다. 대표적으로 , , , , 태그가 여기에 속한다. 태그와 파일 경로 이미지 태그는 빈 태그, 단일 태그로 닫는 태그 없이 사용한다. 의 src 속성 img 태그가 가지는 가장 중요한 특성은 src 이다. 필수 속성이며 이미지의 경로를 적는다. src에 적는 주소로는 절대 경로와 상대 경로가 있다. 절대 경로(Absolute path) 어디에서든 동일한 결과를 보여준다.(구글 검색으로 찾은 이미지 경로 등) 루트 디렉토리를 포함하며 ( C:\를 항상 포함 ) URL 에서는 http:// 를 항상 포함한다. 서버 주소가..

WEB/HTML, CSS 2022.10.09
728x90