[Swift 알고리즘] Codility - Triangle
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - Triangle" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 Triangle coding task - Learn to Code - Codility Determine whether a triangle can be built from a given set of edges. app.codility.com 풀이 이번 문제는 아래 조건을 만족하는 세 수가 있는지 확인하는 문제..
[Swift 알고리즘] Codility - MaxProductOfThree
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - MaxProductOfThree" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 MaxProductOfThree coding task - Learn to Code - Codility Maximize A[P] * A[Q] * A[R] for any triplet (P, Q, R). app.codility.com 풀이 이번 문제는 배열에서 랜덤한 세 개의 수를 곱했을 때의 ..
[Swift 알고리즘] Codility - Distinct
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - Distinct" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 Distinct coding task - Learn to Code - Codility Compute number of distinct values in an array. app.codility.com 풀이 이번 문제는 배열에서 고유한 값의 개수를 구하는 문제입니다. [1, 1, 2, 3, 3]이면 [1, 2..
[Swift 알고리즘] Codility - MinAvgTwoSlice
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - MinAvgTwoSlice" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 MinAvgTwoSlice coding task - Learn to Code - Codility Find the minimal average of any slice containing at least two elements. app.codility.com 풀이 이번 문제는 평균이 최소가 되는 구간..
[Swift 알고리즘] Codility - CountDiv
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - CountDiv" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 CountDiv coding task - Learn to Code - Codility Compute number of integers divisible by k in range [a..b]. app.codility.com 풀이 이번 문제는 A
[Swift 알고리즘] Codility - PassingCars
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - PassingCars" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 PassingCars coding task - Learn to Code - Codility Count the number of passing cars on the road. app.codility.com 풀이 이번 문제는 east로 가는 이동하는 차의 index보다 큰 west로 이동하는 차의 inde..
[Swift 알고리즘] Codility - MissingInteger
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - MissingInteger" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 MissingInteger coding task - Learn to Code - Codility Find the smallest positive integer that does not occur in a given sequence. app.codility.com 풀이 이번 문제는 Array에 존재..
[Swift 알고리즘] Codility - MaxCounters
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - MaxCounters" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 MaxCounters coding task - Learn to Code - Codility Calculate the values of counters after applying all alternating operations: increase counter by 1; set value of all co..
[Swift 알고리즘] Codility - PermCheck
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - PermCheck" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 PermCheck coding task - Learn to Code - Codility Check whether array A is a permutation. app.codility.com 풀이 이번 문제는 input Array가 1~X까지의 수를 1개씩 모두 가지고 있느냐를 판단하는 문제입니다. 즉, [..
[Swift 알고리즘] Codility - FrogRiverOne
·
코딩테스트
안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - FrogRiverOne" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 FrogRiverOne coding task - Learn to Code - Codility Find the earliest time when a frog can jump to the other side of a river. app.codility.com 풀이 이번 문제는 1~X가 모두 나오는 최소 ..
유정주
'codility' 태그의 글 목록