회고록
22일간의 챌린지를 마치며.
https://developer-p.tistory.com/195
22 Basic Challenge Algorithm
https://softsquared.notion.site/Algorithm-5328fab28619430dae2c782d4db6a556
22일동안 정해진 알고리즘 문제를 꾸준히 푸는 챌린지가 있길래 참여했다.
어려운 문제들은 아니고, 백준의 브론즈 문제들을 꾸준히 풀게됨으로써 습관을 형성하는데 도움이 될 것 같았다.
아래는 규칙인데, 매일 진행하고 간단히 인증하면 된다.
https://softsquared.notion.site/22-RULE-da479d46c1e043eb8b7e24258bb2c261
Day 1
220221 공부 일지 : 코테 공부 열심히 해야겠다!
백준 Swift 1000번
// MARK: - 1000번
let input = readLine()!.split(separator: " ").map{Int(String($0))!}
print(input[0] + input[1])
백준 Swift 1001번
// MARK: - 1001번
let input = readLine()!.split(separator: " ").map{Int(String($0))!}
print(input[0] - input[1])
백준 Swift 10998번
// MARK: - 10998번
let input = readLine()!.split(separator: " ").map{Int(String($0))!}
print(input[0] * input[1])
반응형
최근댓글