코딩테스트 209

[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..

코딩테스트 2022.06.18

[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에 존재..

코딩테스트 2022.06.18

[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..

코딩테스트 2022.06.18

[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개씩 모두 가지고 있느냐를 판단하는 문제입니다. 즉, [..

코딩테스트 2022.06.18

[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가 모두 나오는 최소 ..

코딩테스트 2022.06.18

[Swift 알고리즘] Codility - TapeEquilibrium

안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - TapeEquilibrium" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 TapeEquilibrium coding task - Learn to Code - Codility Minimize the value |(A[0] + ... + A[P-1]) - (A[P] + ... + A[N-1])|. app.codility.com 풀이 이번 문제는 | (A[0] + ... +..

코딩테스트 2022.06.18

[Swift 알고리즘] Codility - PermMissingElem

안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - PermMissingElem" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 https://app.codility.com/programmers/lessons/3-time_complexity/perm_missing_elem/ PermMissingElem coding task - Learn to Code - Codility Find the missing element in ..

코딩테스트 2022.06.17

[Swift 알고리즘] Codility - FrogJmp

안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - FrogJmp" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 FrogJmp coding task - Learn to Code - Codility Count minimal number of jumps from position X to Y. app.codility.com 풀이 이번 문제는 개구리가 뛰어야 하는 최소 점프 횟수를 구하는 문제입니다. 괜히 어렵게 꼬아서 생각하..

코딩테스트 2022.06.17

[Swift 알고리즘] Codility - OddOccurrencesInArray

안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - OddOccurrencesInArray" 문제를 풀었습니다. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 OddOccurrencesInArray coding task - Learn to Code - Codility Find value that occurs in odd number of elements. app.codility.com 풀이 이번 문제는 쌍이 맞지 않고 남는 수를 구하는 문제..

코딩테스트 2022.06.17

[Swift 알고리즘] Codility - CyclicRotation

안녕하세요. 개발 중인 정주입니다. 오늘은 "Codility - CyclicRotation" 문제를 풀었습니다. Codility는 포스팅을 어떻게 해야 깔끔할지 고민 중입니다. 결과 스크린샷 + 움짤? 아니면 결과 스크린샷 + 움짤 + 코드? 고민이 되는 부분입니다 ㅎ.. 여러 가지 방법으로 포스팅 해봐야겠어요. Github GitHub - jeongju9216/SwiftAlgorithm: 스위프트 알고리즘 스위프트 알고리즘. Contribute to jeongju9216/SwiftAlgorithm development by creating an account on GitHub. github.com 문제 링크 CyclicRotation coding task - Learn to Code - Codility..

코딩테스트 2022.06.17
반응형