본문 바로가기

[SW][BEAKJOON]/[SW][BEAKJOON][반복문]

[BEAKJOON][반복문][10871][Python] X보다 작은 수

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

count, num = map(int, input().split())
# 위치에 따른 비교가 필요하기 때문에 배열로 저장해서 확인 예정
inArr = list(map(int, input().split()))

for i in range(count):
        if inArr[i] < num:
                print(inArr[i], end=" ")
     

# -----------
# 배열 만드는 다른 방법 (List 사용하지 않음) 
N, x = map(int, input().split())
a = map(int, input().split())
c = []

for i in a:
    if i<x:
        print(i, end=' ')

End

  - 

반응형