본문 바로가기 메뉴 바로가기

Peppo

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Peppo

검색하기 폼
  • 분류 전체보기 (221)
    • Story (13)
    • iOS (143)
      • Error (11)
    • 알고리즘 (43)
    • ETC (7)
    • React-Native (0)
    • CS (Computer science) (3)
  • 방명록

Swift Two Sum (1)
[Swift 알고리즘] - Two Sum (LeetCode)

https://leetcode.com/problems/two-sum/ 정수의 배열로 이루어진 nums로 각각 더해서 target의 값과 같으면 해당 index들을 리턴 내 풀이 class Solution { func twoSum(_ nums: [Int], _ target: Int) -> [Int] { var result: [Int] = [] for (idx, num) in nums.enumerated() { for idx2 in (idx + 1) ..< nums.count { if num + nums[idx2] == target { return [idx, idx2] } } } return result } } Solution().twoSum([2, 7, 11, 15], 9) enumerated()를 이용해..

알고리즘 2023. 8. 17. 08:31
이전 1 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • Peppo's Github
TAG
  • Swift Error Handling
  • iOS error
  • Swift 프로퍼티
  • Swift 프로그래머스
  • Swift init
  • Swift RIBs
  • Swift joined
  • removeLast()
  • Swift Leetcode
  • Swift final
  • 2023년 회고
  • Swift ModernRIBs
  • 원티드 프리온보딩
  • CS 네트워크
  • RTCCameraVideoCapturer
  • ios
  • swift property
  • Swift joined()
  • Swift inout
  • Swift 내림차순
  • Combine: Asynchronous Programming with Swift
  • swift (programmers)
  • Class
  • swift 고차함수
  • swift reduce
  • swift protocol
  • Swift 알고리즘
  • Swift
  • swift programmers
  • RIBs tutorial
more
«   2025/05   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바