공부/코딩테스트

[프로그래머스] 예산, 직사각형 별찍기

ghhong 2021. 1. 11. 09:47

 

나의 답 :

def solution(d, budget):
    d=sorted(d)
    s=0
    count=0
    for i in d:
        s+=i
        print(s)
        if s>budget:
            return count
        count+=1
    return count

 

 

 

나의 답 :

a, b = map(int, input().strip().split(' '))
for i in range(b):
    print('*'*a)