Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
It's about writing a piece of code that solves a specified problem, and it's about having fun. Don't get surly because other people found a more clever way to solve the problem than you did, it makes you look petty.
Some of these kata, you know what you're getting into when you take it on. This is not one of those kata, but it didn't punish me too badly for daring to take it on. Thanks!
It doesn't seem like SQL kata are particularly popular on CodeWars, so you're right that it's probably not worth it to add additional dialects. But some of the languages they already support are pretty obscure, so I'll keep my fingers crossed for MySQL, Oracle, or MS SQL Server ;)
This comment is hidden because it contains spoiler information about the solution
And yet, lots of other people did figure this out, so what does that say?
Don't. You found a solution and then you went back and optimized it after the code was already working. That's a good thing and nothing to feel bad about.
I thought it would be interesting to sort your reply:
((((((((((((((((((((((((()))))))))))))))))))))))))**********************
+++++++++-----------------......000000111111111111111111111112222222222222222222555555;;
===========nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnr
They are defined already as part of the kata, just not in the part of the code that you can edit.
Obviously, given that you have max, you can implement a prime number sieve if you want. There are a zillion kata on here that ask you to do just that.
This comment is hidden because it contains spoiler information about the solution
You're writing programs about things. If the things you're writing the program about are mathematical, then you'll obviously need to know enough math to understand what your program needs to do. There are other problems that require very little math. For example, a web site that allows a user to browse a catalog might use some math in the layout code, or to track items in a shopping cart, but that's a very low ratio of math needed per basic unit of functionality in the code. Then, there are a whole class of problems that don't seem like they'd require a lot of math, but turn out to be very heavily mathematical. For example, computer graphics, AI, and sound processing are all very heavily mathematical, even if it doesn't seem like they would be.
This comment is hidden because it contains spoiler information about the solution
The radius parameter in calculate_volume is a float. So, be sure to use float(radius) in your calculation.
If total_slices is a number, you have to turn it into a string before you can concatenate it with ": It must be dinner time!". Try:
print(str(total_slices) + ": It must be dinner time!")
Try using print("Piece of text " + string_value + ": more text") instead of print("Piece of text", string_value, ": more text").
Loading more items...