목록2024/07 (2)
teunteun2
ArticlesExplore new documentation and sample code from WWDC24WWDC24 머신러닝 및 AI 모음https://developer.apple.com/news/?id=pby7a6ex WWDC24 디자인 세션 모음https://developer.apple.com/news/?id=s9s75a8k WWDC24 Swift 세션 모음https://developer.apple.com/news/?id=0ofaehl4 WWDC24 개발자 세션 모음https://developer.apple.com/news/?id=a693fazi WWDC24 SwiftUI 및 UI 프레임워크 세션 모음https://developer.apple.com/news/?id=zqzlvxlm WWDC2..
https://www.acmicpc.net/problem/1525 2차원 배열의 인덱스를 1차원 배열 인덱스로,반대로 1차원 배열 인덱스를 2차원 배열의 인덱스로 변경하여 불필요한 배열을 생성하지 않는유틸리티 함수들을 알고리즘 스터디 대장님 덕분에 처음 알게 되었다. 목표한 번호판에 도달하기 위한 '최소이동' 횟수를 구하는 문제,도달하지 못하는 경우라면 -1 반환 import Foundation// 최소 이동으로 번호판 만들기 (빠진 숫자는 0으로 표시)// MARK: - Util Methodfunc from2DTo1D(_ r: Int, _ c: Int) -> Int { return 3 * r + c}func from1DTo2D(_ idx: Int) -> (Int, Int) { return ..