Kotlin18 [프로그래머스 • 코틀린] 문자열 다루기 기본 # 12918 [프로그래머스 • 코틀린] (제목) # 12918 #12918 🎄 Question ? https://school.programmers.co.kr/learn/courses/30/lessons/12918 class Solution { fun solution(s: String): Boolean { var answer = true return answer } } 🧩 Thought Process toString으로 바꾸어주기 문자열의 크기만큼 for 문 돌리기 if문 을 이용해서 모든 문자가 문자열인지 확인하기 (이때 아스키 코드 범위 이용! #첫 시도 class Solution { fun solution(s: String): Boolean { var answer = true var sString = s.toSt.. 2023. 11. 7. [프로그래머스 • 코틀린] 부족한 금액 계산하기 #82612 #82612 🎄 Question ? https://school.programmers.co.kr/learn/courses/30/lessons/82612 //82612 class Solution { fun solution(price: Int, money: Int, count: Int): Long { var answer: Long = -1 return answer } } 🧩 Thought Process use the for loop to find the summation of all the n times of rides. repeat count times! for 문을 이용해서 총 가격 찾기 Then subtract the sum by the money and return that as an answer 총 .. 2023. 11. 6. 이전 1 2 3 4 5 다음