Skip to content

perrymant/CodeWarsKataStuff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CodeWarsKataStuff

Just some CodeWars Solutions in Python.

A nice example:

def solve(a): return sum(isinstance(x, int) and [1, -1][x % 2] for x in a)

or of course this is a nice one:

for i in range(1, 101): print("Fizz"[(i%3)*4:] + "Buzz"[(i%5)*4:] or i)

About

CodeWarsKataStuff

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages