Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 646 Bytes

Stringy_Strings.md

File metadata and controls

45 lines (24 loc) · 646 Bytes

CodeWars Python Solutions


Stringy Strings

Instructions

write me a function stringy that takes a size and returns a string of alternating '1s' and '0s'.

the string should start with a 1.

a string with size 6 should return :'101010'.

with size 4 should return : '1010'.

with size 12 should return : '101010101010'.

The size will always be positive and will only use whole numbers.


Given Code

def stringy(size):
    pass

Solution

def stringy(size):
    return ("10" * size)[:size]

See on CodeWars.com