728x90 반응형 분류 전체보기254 Swift) 프로그래머스(Lv1) 수박수박수박수박수? (String) programmers.co.kr/learn/courses/30/lessons/12922 코딩테스트 연습 - 수박수박수박수박수박수? 길이가 n이고, 수박수박수박수....와 같은 패턴을 유지하는 문자열을 리턴하는 함수, solution을 완성하세요. 예를들어 n이 4이면 수박수박을 리턴하고 3이라면 수박수를 리턴하면 됩니다. 제한 조�� programmers.co.kr 안녕하세요 후르륵짭짭 입니다. 역시 쉬운 문제 풀때가 최곱니다 ㅎㅎㅎㅎ 사실 프로그래머스 Lv1 같은 경우는 다른 사람의 코드를 보면서 Swift 문법에 좀더 가까워 지기 위한 이유도 있습니다. 간단한 문제라서 해설은 생략 하겠습니다!! func solution(_ n:Int) -> String { var mellon = "" for i in.. 2020. 7. 13. 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. IOS) User Interaction 에 대해서 알아보자 hururuek-chapchap.tistory.com/26?category=909178 IOS) UIViewController로 Pop UP 만들기 안녕하세요! 후르륵 짭짭 입니다. 이번에는 Pop UP 뷰에 대해서 배워 볼려고 합니다. pop up 뷰를 만드는 방법은 총 두가지가 있습니다. 하나는 pop up 할 뷰를 viewcontroler에 임시로 보관하고 있다가 버 hururuek-chapchap.tistory.com 안녕하세요 후르륵 짭짭 입니다. 이전에 PopUp 뷰에 대해서 배웠는데요. 이번에는 User Interaction에 대해서 알아보려고 합니다. User Interaction은 무슨 말 일까요? Interaction은 상호작용 하다 입니다 즉, User Interaction은 사용자와.. 2020. 7. 13. 이전 1 ··· 54 55 56 57 58 59 60 ··· 64 다음 728x90 반응형