문제 설명 제한 조건 https://leetcode.com/explore/interview/card/top-interview-questions-easy/93/linked-list/603/ Explore - LeetCode LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore. leetcode.com 내 답안 class Solution { func removeNthFromEnd(_ head: ListNode?, _ n..
문제 설명 제한 조건 https://leetcode.com/explore/interview/card/top-interview-questions-easy/93/linked-list/553/ Explore - LeetCode LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore. leetcode.com 내 답안 /** * Definition for singly-linked list. * public class ListN..
문제 설명 두 수를 입력받아 두 수의 최대공약수와 최소공배수를 반환하는 함수, solution을 완성해 보세요. 배열의 맨 앞에 최대공약수, 그다음 최소공배수를 넣어 반환하면 됩니다. 예를 들어 두 수 3, 12의 최대공약수는 3, 최소공배수는 12이므로 solution(3, 12)는 [3, 12]를 반환해야 합니다. 제한 조건 두 수는 1이상 1000000이하의 자연수입니다. 내 답안 func solution(_ a: Int, _ b: Int) -> [Int] { return [gcd(a, b), a * b / gcd(a, b)] } func gcd(_ a: Int, _ b: Int) -> Int { return b == 0 ? a : gcd(b, a % b) } 접근 방법 최대공약수 구하기 - 유클리..