-Code
for _ in range(int(input())):
n = input()
direction = input()
print(
abs(direction.count('W') - direction.count('E')) +
abs(direction.count('N') - direction.count('S'))
)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30821번 별자리가 될 수 있다면 (0) | 2024.02.29 |
---|---|
[백준/파이썬] 7279번 Autobusas (0) | 2024.02.28 |
[백준/파이썬] 21200번 Forced Choice (0) | 2024.02.26 |
[백준/파이썬] 30310번 Finding Forks (0) | 2024.02.25 |
[백준/파이썬] 24296번 ЛИНИЯ (0) | 2024.02.24 |