본문 바로가기

분류 전체보기

(174)
[Leetcode] 2956. Find Common Elements Between Two Arrays https://leetcode.com/problems/find-common-elements-between-two-arrays Find Common Elements Between Two Arrays - LeetCode Can you solve this real interview question? Find Common Elements Between Two Arrays - You are given two 0-indexed integer arrays nums1 and nums2 of sizes n and m, respectively. Consider calculating the following values: * The number of indices i such that leetcode.com class So..
[Leetcode] 804. Unique Morse Code Words https://leetcode.com/problems/unique-morse-code-words Unique Morse Code Words - LeetCode Can you solve this real interview question? Unique Morse Code Words - 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 uniqueMorseRepresentations(self, words: List[str]) -> int: morse..
[Leetcode] 1684. Count the Number of Consistent Strings https://leetcode.com/problems/count-the-number-of-consistent-strings Count the Number of Consistent Strings - LeetCode Can you solve this real interview question? Count the Number of Consistent Strings - 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 countConsistentStri..
[Leetcode] 1832. Check if the Sentence Is Pangram https://leetcode.com/problems/check-if-the-sentence-is-pangram LeetCode - The World's Leading Online Programming Learning Platform 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 checkIfPangram(self, sentence: str) -> bool: alphabet = { 'a':0, 'b':0, 'c':0, 'd':0, 'e':0,..
클라우드 컴퓨팅의 정의 가상화 기술을 이용해 물리적인 하드웨어 장비에서 독립적인 별도의 자원(서버, 네트워크, 스토리지 등)을 생성하고, 자원의 확대와 축소를 가능하게 하여 사용자가 요구한 특정 자원을 즉시 제공하는 것 - 클라우드컴퓨팅 발전 및 이용자 보호에 관한 법률 제 2조 제 1호 “클라우드컴퓨팅”(Cloud Computing)이란 집적ㆍ공유된 정보통신기기, 정보통신설비, 소프트웨어 등 정보통신자원(이하 “정보통신자원”이라 한다)을 이용자의 요구나 수요 변화에 따라 정보통신망을 통하여 신축적으로 이용할 수 있도록 하는 정보처리체계를 말한다.
[Leetcode] 2006. Count Number of Pairs With Absolute Difference K https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k LeetCode - The World's Leading Online Programming Learning Platform 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 countKDifference(self, nums: List[int], k: int) -> int: count = 0 for i in r..
[Leetcode] 2367. Number of Arithmetic Triplets https://leetcode.com/problems/number-of-arithmetic-triplets LeetCode - The World's Leading Online Programming Learning Platform 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 arithmeticTriplets(self, nums: List[int], diff: int) -> int: count = 0 for n in range(2, len(nu..
[Leetcode] 2325. Decode the Message https://leetcode.com/problems/decode-the-message LeetCode - The World's Leading Online Programming Learning Platform 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 decodeMessage(self, key: str, message: str) -> str: key = key.replace(' ', '') table = {} index = 0 for n ..

728x90