728x90 반응형 leetcode14 Swift) LeetCode(Easy) - Palindrome Linked List(Linked List) leetcode.com/problems/palindrome-linked-list/ Palindrome Linked List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 안녕하세요! 후르륵 짭짭 입니다 이번에는 연결 리스트로 펠린드롬 문제를 풀어 봤습니다... 역시 주소값을 다루는 건 직관적이지 않아서 어렵습니다 ㅠㅠ 총 두 가지의 방법으로 풀었고요. 처음에 푼 방법은 func isPalindrome2(_ head: ListNode?) -> Bool { gu.. 2020. 7. 19. Swift) LeetCode(Easy) - Merge Two Sorted Lists(Linked List) leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted Lists - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 안녕하세요 후르륵짭잡 입니다 이번에는 한번도 해보지 못 했던 swift로 연결리스트 구현 입니다 swift로 연결 리스트 구현은 처음이라 많이 애먹었는데요,,,, 그럼 알아 가보도록 하겠습니다. ** 문제 ** 문제는 정렬된 두개의 연결 리스트를 주고 그 두개의 연결리스트를 묶어서 다시 정렬.. 2020. 7. 19. Swift) LeetCode(Easy) - Best-Time-To-Buy-And-Sell-Stock(DP) leetcode.com/problems/best-time-to-buy-and-sell-stock/ Best Time to Buy and Sell Stock - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 안녕하세요 후르륵짭잡입니다. ** 전체 코드 ** func maxProfit(_ prices: [Int]) -> Int { var buy = 987654321 var maxProfit = 0 for index in 0..= buy { let sell = pri.. 2020. 7. 13. Swift) LeetCode(Easy) - Climbing Stairs (DP) leetcode.com/problems/climbing-stairs/ Climbing Stairs - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 안녕하세요!! 후르륵 짭짭 입니다! 오늘도 DP 알고리즘에 대해서 공부 해보도록 하겠습니다. ** 전체 코드 ** func climbStairs(_ n: Int) -> Int { var start : Int = 3 var array : [Int] = [1,2] while ( start [Int] { var newAr.. 2020. 7. 13. 이전 1 2 3 4 다음 728x90 반응형