본문 바로가기

leetcode45

78] 1672. Richest Customer Wealth Kotlin https://leetcode.com/problems/richest-customer-wealth/description/ Richest Customer Wealth - LeetCode Can you solve this real interview question? Richest Customer Wealth - You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the i th customer has in the j th bank. Return the wealth that the richest customer has. A custom leetcode.com 2차원 int 배열이 주어질때 각 행의 합 중 .. 2023. 4. 19.
77] Leetcode 1979. Find Greatest Common Divisor of Array #Kotlin https://leetcode.com/problems/find-greatest-common-divisor-of-array/description/ Find Greatest Common Divisor of Array - LeetCode Can you solve this real interview question? Find Greatest Common Divisor of Array - Given an integer array nums, return the greatest common divisor of the smallest number and largest number in nums. The greatest common divisor of two numbers is the largest leetcode.co.. 2023. 4. 12.
76] ★ Leetcode 1071. Greatest Common Divisor of Strings Kotlin https://leetcode.com/problems/greatest-common-divisor-of-strings/description/ Greatest Common Divisor of Strings - LeetCode Can you solve this real interview question? Greatest Common Divisor of Strings - For two strings s and t, we say "t divides s" if and only if s = t + ... + t (i.e., t is concatenated with itself one or more times). Given two strings str1 and str2, return t leetcode.com 두 문자.. 2023. 4. 11.
75] Leetcode 2413. Smallest Even Multiple Kotlin 양의 정수 n이 주어질때, 2와 n의 최소공배수를 return하는 문제 class Solution { fun smallestEvenMultiple(n: Int): Int { if(n % 2 == 0){ return n } else { return n*2 } } } 2023. 4. 10.