2025/03/05 7

[프로그래머스] 다트 게임

https://school.programmers.co.kr/learn/courses/30/lessons/176821. 내 풀이이전 수를 int에 따로 저장해서 검사했다.class Solution { public int solution(String dartResult) { int answer = 0; int prevNum = 0; for(int i = 0; i   2. 다른 분 풀이 - stack 사용Character.isDigit(c)를 활용해 숫자인지를 알 수 있다.stack을 사용해 편리하게 값을 넣었다 뺐다 하고있다.import java.util.*;class Solution { public int solution(String dartR..

[프로그래머스] 소수 찾기

에라토스테네스의 체를 이용하는 풀이법이다. 시간 제한도 걸려있어 어려운 문제이다. 1. 내 풀이한번에 끝까지 돌면서 소수의 개수까지 같이 세는 방식이다.class Solution { public int solution(int n) { int answer = 0; int[] isPrime = new int[n+1]; for(int i = 2 ; i   2. 다른 분 풀이일단 에라토스테네스의 체 후에 소수의 개수를 구하는 방법이다.class Solution { public int solution(int n) { int answer = 0; boolean[] check = new boolean[n+1]; check[0] = ..