Giter Club home page Giter Club logo

atcoder's People

Contributors

zerebom avatar

Watchers

 avatar

atcoder's Issues

CSメモ

身につけた良さそうなアルゴリズム

  • DFS
  • BFS
  • 平衡二分木
  • ソート
  • 2分探索
  • 動的計画法
  • ビット演算

1秒間で処理できるfor文の回数=10^8

バケット法

num[i]=値iが何個あるか

Codility

BinaryGap

二進数にした時、0が何回連続するか答えよ

def solution(N):
    # write your code in Python 3.6
    b=bin(N)[2:]
    cnt=0
    max_cnt=0
    zero_cnt=0
    for i in b:
        if i=='0':
            cnt+=1
            
            if max_cnt<cnt:
                max_cnt=cnt
        if i=='1':
            cnt=0
            zero_cnt+=1
    
    if zero_cnt<2:
        max_cnt=0
    return max_cnt 
            

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.