목록lev1 (2)
취미가 좋다
https://www.acmicpc.net/problem/1065 1065번: 한수 어떤 양의 정수 X의 각 자리가 등차수열을 이룬다면, 그 수를 한수라고 한다. 등차수열은 연속된 두 개의 수의 차이가 일정한 수열을 말한다. N이 주어졌을 때, 1보다 크거나 같고, N보다 작거나 www.acmicpc.net Solution N = int(input()) ans = 0 r = None for num in range(1, N+1): a = num % 10 num = int(num / 10) while(True): if num == 0 : ans += 1 r = None break b = num % 10 num = int(num / 10) if r == None: r = a-b elif r != a-b: r ..
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/ Best Time to Buy and Sell Stock - 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 You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing ..