전체 (290) 썸네일형 리스트형 Git 교과서 코드 이력, 하나도 놓치지 마라! - 길벗 주소 https://book.naver.com/bookdb/book_detail.nhn?bid=16293640 Git 교과서 기본기를 탄탄하게 다지는 깃(git) 입문서도해와 실습으로 깃, 소스트리, 깃허브를 배우자!버전 관리 시스템(VCS)은 파일의 변화를 시간에 따라 기록했다가 나중에 특정 시점의 버전을 다시 꺼내 book.naver.com 리뷰 책에 대해서 말해주세요. 여러 git 서적 목차를 비교하여 선택한 git 서적입니다. 상세 설명과 예제를 통해 깃 개념과 기초를 잡을수 있는 책입니다. 또한, git bash와 소스트리 사용 방법을 알려줘요. stage, tracked, untracked 등의 개념을 잡아주며, 다양한 git 명령어를 소개합니다. merge, conflict, rebase 등.. [LeetCode] 300. Longest Increasing Subsequence 문제 leetcode.com/problems/longest-increasing-subsequence/ Longest Increasing Subsequence - 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 코드 22년 2월 17일 코드 class Solution { func lengthOfLIS(_ nums: [Int]) -> Int { var maxLength = 0 var lengths = Array(repeating: 1, count: nums.count.. [LeetCode] 322. Coin Change 문제 leetcode.com/problems/coin-change/ Coin Change - 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 잠깐만 0부터 코인들을 더해볼까요? 아니면, 목표 값에서 코인들을 하나씩 빼볼까요? 코드 22년 2월 17일 코드 class Solution { func coinChange(_ coins: [Int], _ amount: Int) -> Int { if amount == 0 { return 0 } var result = Arra.. [LeetCode] 70. Climbing Stairs 문제 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 코드 class Solution { func climbStairs(_ n: Int) -> Int { var before2 = 0 var before1 = 1 for i in 1...n { var current = before2 + before1 before2 = before1 before1 = current }.. [LeetCode] 190. Reverse Bits 문제 leetcode.com/problems/reverse-bits/ Reverse Bits - 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 잠깐만 "If this function is called many times, how would you optimize it?" 문제는 풀어도 최적화가 관건이네요~ 코드 21년 4월 7일 코드 class Solution { func reverseBits(_ n: Int) -> Int { var calN = n var re.. [LeetCode] 268. Missing Number 문제 leetcode.com/problems/missing-number/ Missing Number - 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 잠깐만 손으로 계산하면서 패턴을 찾아보세요 코드 class Solution { func missingNumber(_ nums: [Int]) -> Int { var totalSum = 0 var numSum = 0 for i in 0.. Int { var missingNum = 0 var addNum = 1 nums.. [LeetCode] 338. Counting Bits 문제 leetcode.com/problems/counting-bits/ Counting Bits - 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입니다 코드 22년 2월 16일 작성 코드 class Solution { func countBits(_ n: Int) -> [Int] { var oneCount: [Int] = Array(repeating: 0, count: n+1) if oneCount.count > 1 { oneCount[1] = 1 }.. [LeetCode] 191. Number of 1 Bits 문제 leetcode.com/problems/number-of-1-bits/ Number of 1 Bits - 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 잠깐만 비트 연산으로 풀어보세요 코드 class Solution { func hammingWeight(_ n: Int) -> Int { var targetNum = n var count = 0 for i in 0..> 1 } return count } } 설명 비트 연산을 통해, 1의 개수를 계산했습니다. [LeetCode] 371. Sum of Two Integers 문제 leetcode.com/problems/sum-of-two-integers/ Sum of Two Integers - 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 잠깐만 비트 연산인데, 아이디어가 없으면 코드 바로 보세요~ 코드 class Solution { func getSum(_ a: Int, _ b: Int) -> Int { var tempB = (a & b) [iOS] 앱 아이콘 등록하기 내용 우리는 앱 아이콘 자동 리사이즈 사이트를 통해, 해상도별 앱 아이콘을 이미 다운 받았어요. skillist.tistory.com/243 [iOS] App 아이콘 해상도별 이미지 자동 생성 사이트 소개 앱 1인 개발 및 출시하며, 앱 아이콘과 화면, 버튼 등의 이미지를 직접 디자인 했었어요. 이제는 이미지 작업에 익숙하기 때문에, 크게 문제 없습니다. 그래도, 저는 디자이너가 아닌 개발자 skillist.tistory.com 이제 다운 받은 이미지를 앱 아이콘으로 세팅해봅시다! 1. 앱 프로젝트의 (기본으로 생성된) Assets.xcassets 파일을 더블클릭하면 오른쪽 빨간 화면처럼 앱 아이콘 등록 창이 보입니다. 이제 앱 아이콘을 매핑하면 되는데, 아이콘 이미지 이름과 아이콘 입력 창을 잘 보세요.. 이전 1 ··· 6 7 8 9 10 11 12 ··· 29 다음