그래오늘은이거야

Codility 01. BinaryGap (Swift) 코딩테스트(알고리즘)CodeTest 본문

세상 개발/IOS(Swift)

Codility 01. BinaryGap (Swift) 코딩테스트(알고리즘)CodeTest

jinhongstar 2019. 7. 1. 13:13
728x90
반응형

요즘 온라인으로 코딩 테스트 하는 곳이 많습니다.

 

해외에 유명한 기업및 국내 잘나가는 IT기업들은 Codility 를 본다.

 

IBM, FIFAOnline, 11번가, 우아한형제들, 티몬, 쿠팡, Grab 등등..

 

저도 우아한형제들 코딩 테스트를 통하여 아래 사이트를 알게 되었습니다.

 

목적은 100% 

 

온라인 코딩 테스트 

 

제가 할 수 있는 언어는 :  Java(상), Object-c(상), Swift(중상), Android(상), C#(하), C,C++(하), SQL(하)

각각의 언어로 프로젝트 한번 이상 해봤습니다.

이 글이 누군가에겐 "약"이 되고 누군가에겐 "독"이 될 것이다.

개발자라면 적어도 기본 알고리즘 정도는 스스로 학습하여 풀어봐야 한다.

참고로 코딩테스트 문제를 제출 한 심사위원 분도

제 블로그에서 답을 확인 한다는 것을 역으로 알아두고 보세요!! ㅎㅎ

 

요즘 운동에만 신경쓰고 있어서 알고리즘을 다시 풀어 봤을때 너무 놀랐다...

 

나는 코딩을 잘 하고 생각하고 있었는데... 내가 고작 이정도 였을까...

 

총 20개 정도로 알고있다. 이걸 다 작성하고 100점을 맞을 것이다.

 

Lesson 1

Iterations

Lesson 2

Arrays

Lesson 3

Time Complexity

Lesson 4

Counting Elements

Lesson 5

Prefix Sums

Lesson 6

Sorting

Lesson 7

Stacks and Queues

Lesson 8

Leader

Lesson 9

Maximum slice problem

Lesson 10

Prime and composite numbers

Lesson 11

Sieve of Eratosthenes

Lesson 12

Euclidean algorithm

Lesson 13

Fibonacci numbers

Lesson 14

Binary search algorithm

Lesson 15

Caterpillar method

Lesson 16

Greedy algorithms

Lesson 17

Dynamic programming

Lesson 90

Tasks from Indeed Prime 2015 challenge

Lesson 91

Tasks from Indeed Prime 2016 challenge

Lesson 92

Tasks from Indeed Prime 2016 College Coders challenge

Lesson 99

Future training

 

테스트 할 수 있는 언어는 : 

C, C++, C#, Go, Java, Javascript, Kotlin, Lua, Object-c, Pascal, Perl, PHP, Python, Ruby, Scala, Swift4, VisualBasic

 

https://app.codility.com/

 

1. BinaryGap

 

문제는 아래와 같습니다.

 

A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.

For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary representation 10100 and contains one binary gap of length 1. The number 15 has binary representation 1111 and has no binary gaps. The number 32 has binary representation 100000 and has no binary gaps.

Write a function:

public func solution(_ N : Int) -> Int

that, given a positive integer N, returns the length of its longest binary gap. The function should return 0 if N doesn't contain a binary gap.

For example, given N = 1041 the function should return 5, because N has binary representation 10000010001 and so its longest binary gap is of length 5. Given N = 32 the function should return 0, because N has binary representation '100000' and thus no binary gaps.

Write an efficient algorithm for the following assumptions:

  • N is an integer within the range [1..2,147,483,647].

    Copyright 2009–2019 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.

 

문제의 내용은 :

 

함수에 넘어온 숫자를 이진수로 변경하여 100100001 1과 0사이의 숫자를 계산해서 0의 수의 MAX를 구하는 것이다.

 

 

import UIKit


let N = 1041
let str = String(N,radix:2)

var temp = ""
var isNumberOne = false
var zeroNumber : [Int] // 선언
zeroNumber = [Int]()   // 초기화

for char in str {
    
    if char == "1"{
       
        isNumberOne = true;
    }else{
        
        isNumberOne = false;
        temp.append(char)
    }
    
    if isNumberOne == true{
        zeroNumber.append(temp.count)
        temp = ""
    }
    
   
    
}

//let bounds = minMax(array: zeroNumber)
//    print(bounds.max)

print(zeroNumber.max()!)
Buy Me A Coffee

 

 

100% 모든 문제를 백점! 만점! 맞을때 까지!!

 

 

반응형
Comments