Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 정보처리기사 실기 요약본
- IOS
- cocoapods
- JSONParser
- JSONSerialization
- 티스토리챌린지
- 프로그래머스
- dynamic height
- RealmSwift
- 정보처리기사 실기
- UITableView
- SwiftGen
- swift
- Decodable
- pbxfilesystemsynchronizedrootgroup
- PageViewController
- Codable
- 위클리챌린지
- storybaord
- issecuretextentry
- 정보처리기사
- Xcode
- CustomCode
- 2018 KAKAO BLIND RECRUITMENT
- programmers
- parse
- pbxgroup
- Custom PageViewController
- Pod
- JSON
Archives
- Today
- Total
목록2021 카카오 채용연계형 인턴십 (1)
iOS 개발일기
[Swift] 프로그래머스(코딩테스트 연습: LEVEL 1) - 숫자 문자열과 영단어
https://programmers.co.kr/learn/courses/30/lessons/81301 코딩테스트 연습 - 숫자 문자열과 영단어 네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자 programmers.co.kr 나의 풀이 func solution(_ s: String) -> Int { let numbers = ["zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"] var result = s numbers.enumerated().forEach { (i, num) in re..
코딩테스트
2021. 8. 19. 13:56