You need to sign in or sign up before continuing.×
The forum is deprecated and will become read-only.
Join our Discord or use GitHub Discussions.

Kata Beta Process

About

Discuss the kata approval and beta process here.

Discuss:

  • Please sign in or sign up to leave a comment.
  • leadirship Avatar

    I hope it will surpass what we are using now in no time

  • user4784940 Avatar

    Ability to reset progress

  • Ruscore Avatar

    Hi, how long can a created kata be in beta testing? I have created a kata that has been in beta testing for about a month now.

  • Manzar05 Avatar

    Can someone explain "The Supermarket Queue" kata .... thanks in advance

  • vyachesl Avatar

    Hi guys, I am the new one here. The question is: I solved the first kata, have been tested the solution and everything goes correct, but when i am trying to Attempt the solution, it shows a fail. Someone faced with such problem and how to fixed it? thanks a lot

  • alex3287 Avatar

    Hello!

    I made a translation of the kata: "Sum The Strings" (https://www.codewars.com/kumite/60bb6344b3a07c000d4215ff?sel=60bb6344b3a07c000d4215ff) into swift.

    Can anyone accept the transfer?

  • alex3287 Avatar

    Hello!

    Does anyone know how to do random tests on a swif?

  • ilash Avatar

    Hi,

    Where is the best/correct place for the reference solution when writing random tests in C? As I recall from writing tests in python you were supposed to place the reference solution within the test function to prevent users from abusing the reference solution, but I guess you cannot do this in C.

  • Raffaele Fiorillo Avatar

    If I publish a kata, but then it gets removed, do I lose my honor points?

  • Gers2017 Avatar

    What's the process of creating a kata? once I finish the test cases should I publish the kata?

    I'm asking bc but some reason my last kata was removed. This one took me a long time so I want to ensure It isn't a waste of time

  • alex3287 Avatar

    Sorry. Can anyone please help me? I created two kata, but why are they "Retired" status? Do I have to wait or do I have to do something?

  • MLOpt Avatar

    I have a kata in beta for which, so far, 73 warriors have trained (431 submissions) and only 9 succeeded (not counting my own solution or the 3 who exploited problems with the testing that existed early on) and yet some of the tiny proportion who succeeded believe this is a kyu8 or 7.

    So it's difficult enough that most wariors can't figure it out — warriors who don't get to vote on the difficulty — and yet some of the handful who can, feel like it's easy.

    Ironically, because it's actually not easy, we can expect to not receive a lot of votes, which will give extra weight to the few lowball votes, skewing the average.

    This seems like quite a flaw in the beta process. Wouldn't the attempt/pass ratio be a better truth source in evaluating difficulty than asking people who know the answer to a question if it was hard? Surely all questions are easy to the people who know the answer.

    https://www.codewars.com/kata/600db626baa835000dbd9023

  • NitsanCohen770 Avatar

    Hello I was in the middle of the mummbling practice and than I had a network error and now I cant find it againg

  • mini2580 Avatar

    Hi Everyone,

    I have started using this platform recently , this week.

    I am not sure if this is the right forum to ask this question here.Apologies...in case. Is there a way to save my work in between and continue again?

    It closes whatever I have done and shows the next training.

    Thanks in-advance.

  • mjs375 Avatar

    Hey all! Trying to design my first kata, but I think it might not be possible?... It's a riddle kata... you get n items, and one of these items is poisoned. It's your job to find the poisoned item, n_? out of n total. (In addition to severe limitations on how many trials you can do to find it, that's the tricky part.) Now, obviously, the n_? item needs to be marked in some way so that when you're experimenting, it can interact with your data objects to give you clues about its identity. But how can I give the kata-goers this variable n_? in a secret/hidden fashion without them just saying, well let me just print out the given function parameter n_? and return that, instead of truly 'solving it'? Are kata riddles always this hard/impossible to implement when there needs to be some hidden clue you have access to, but not direct access to?...

  • Aidensamuel Avatar

    I wanted to create a kata and loved the insert example helped me understand things better, my language is python. I would like to see a kata in its raw form like i want to see example test cases too, the random ones. Or a link to a site where i can learn this or videos anything is appreciated thanks

  • Eugene123 Avatar

    I would like to begin making katas by translating some existing ones between my skilled languages (C, C++, and C#). I see documentation and tutorials for creating new katas but thought it would be easier to translate some between languages first. Is this a good approach or would it be best to create a new kata before translating an existing one? If translating first is the way to go is there any documentation specific on how to do that? I apologize if the answer is obvious, I have dug around a bit but decided to ask for help so I can start translating katas instead of digging for something alluding me.

  • matthewmoppett Avatar

    I created a beginner-level kata in Rust about two weeks ago. Since then it's been solved a total of four times, and voted on twice (for a 50% satisfaction level). There's still an outstanding issue, but I think it's been addressed adequately and will soon be resolved.

    Anyway, I'm a little bit disappointed in the very slow rate at which the kata is advancing. I've noticed that another kata, also in Rust, has been languishing in beta since June with only three completions and two votes. One of the completions (and the only upvote) is mine: I found it to be a perfectly good beginner-level kata -- clearly explained, good random tests, reasonably interesting for the degree of difficulty. No-one has raised any issues. And yet there are only three completions in eight months, one of which inexplicably downvoted it. This does not give me much hope for my own kata.

    Which brings me to my question: is this a common experience? Is it because these kata are just crappy, or is it because Rust is still something of a niche language? Or because people who know Rust are unlikely to be looking for beginner-level kata? Would I be likely to have better luck if I translated it into, say, Python or Java? Or aimed at a more difficult kata in Rust? (I have previously published a 2-kyu Haskell kata that turned out to be reasonably popular).

    I'll just add that this is not a complaint in any way -- I'm just looking for some guidance/reassurance/frank advice.

  • Gers2017 Avatar

    My first kata was "retired". What it means? I can't fix it and it's gone?

  • xlpy Avatar

    Hi all,

    I am creating my first kata and am struggling with the testing part, especially using the decorators and making random cases. I checked the github and codewars docs but not much is said about the that, at least not enough for me. Could someone please help me validate my kata by explaining me the detailed way to have working test cases?

    Thanks,

  • MrKoyl Avatar

    Hi!

    I wanted to delete my old Kata that is in Beta status and un-published after bad feedbacks. But I get User does not have permission to perform this action error. I created it, but have no permisssions? Does anybody know what's wrong?

  • troykel Avatar

    I have a sum_digits function and I want to set it up so the codewars system can input the 3 test number inputs: 10, 99, and -32.

    I'm using: number = input(), but I get an EOF error.

    When I use: sum_digits(10) sum_digits(99) sum_digits(-32)

    It returns all 3 at once and I don't pass the Kata What gives? Not sure what to do?

  • doooom Avatar

    If I want to approve a Kata, do I have to finish it first? If that is true, without any 6000+ warriors who finish my Beta, the Kata can't be approved? Please advise. Thanks.

  • GabrielSaul Avatar

    I'm about to publish my first kata, but I'd like to restrict the usage of certain operators & statements. How do I do this?

  • Aharon Sambol Avatar

    I'm trying to make a Java Kata and I would like to prevent the use of capital letters. Is there any way to do this? I got everything else working just that dosen't. Thanks in advance

  • ata22 Avatar

    can someone pls explain how the 'attempt' section works?

  • Rbaha07 Avatar

    I have seen a few 'mystery function' katas before, and noticed that when I searched the 'Mystery' key word, there weren't many katas that appeared. So I was wondering, if I were to make a mystery function kata, would it be considered a duplicate, even if the mystery function does something completely different?

  • doooom Avatar

    Alright, I do have a question now. When I edit a new Kata, anyway to test the samples test cases? In the translation page, I can switch between the test code and samples test code, and test both. However, in the New Kata page, the Validation key seems only run the full test. Please advise. Thanks a lot.

  • Rbaha07 Avatar

    I am trying to create a new kata in python, and everything is going well, except when I try to create random tests, something goes wrong.
    I have two functions, one in the complete solution tab, and the other within the test cases tab. They contain the same code, but have different names, so they don't overwrite each other. I am using the code below to do random tests, but for some reason when do, the two functions output different things.

    @test.describe('Random Tests')        
    def random_tests():        
        @test.it("Random Tests")
        def test_cases():
            for i in range(100):
                input = get_input(random.randint(0,15))
                result = sort_last_char_correct(input)
                test.it(f'{input}: should return {result}')
                test.assert_equals(sort_last_char(input),result)
    

    The fixed tests work completely fine with the very same code for the function sort_last_char().

    How do I fix this?

  • kurokikaze Avatar

    Fixed last issue in kata, would really appreciate more feedback to get it out of Beta: https://www.codewars.com/kata/5d4bed7c7a528071756060d8

  • Rbaha07 Avatar

    Does a combination of two katas count as a duplicate, and can it be raised as an issue?

  • Rbaha07 Avatar

    My kata recently got retired because of constant issues raised. When the last one was raised, the site automatically retired. The thing was, when the issue the user had raised was 'Wrong solution can easily pass tests', and he provided a link to the code, but when I tried the code myself, it didn't pass all the tests. But by then it was too late. Also please don't get me wrong, I am not complaining about the user.

    link to the discussion https://www.codewars.com/kata/5f50bad4126334001af163bd/discuss#label-issue

    1. Can I republish a copy of the kata (with bugs fixed)?

    2. If not, what can I do about the kata?

    This was one of my first kata ever, and I have worked really hard on it. I also don't want my idea to go to waste.

  • youngishcord Avatar

    my kata is "Retired". What does it mean??? How can I fix this?

  • user354062 Avatar

    Can a relatively recent retired kata (previously in Beta) become active again for testing/feedback?

  • fireguy187 Avatar

    I've just created my first kata but when I published it, an error appeared saying my solution didn't work on the example test cases. however when I moved the example test cases into the real test cases they passed just fine. I clicked re publish and the same thing happened. I then left to check my profile and now there's no sign of my kata anywhere. Has it just disappeared forever or is do I just not know how to find it.

  • doooom Avatar

    How to test length of the answer codes? I checked several one line challenges but did not see any code length detecting in their test codes showed. I am writing a Kata and want a limit on code length to avoid hardcoding results. Please advise. Thanks a lot.

  • balygaby Avatar

    How do I make my beta kata popular? I estimated it 5 kyu, it would probably take half an hour to solve, and yet no-one solved it.

  • iwtga Avatar

    what i have observed is that: If i solve katas which are in the beta stage, i get the applicable honor, but it doesn't show up on the "rank progress"(Rank breakdown). Does it show up, once the kata gets approved?

  • trashy_incel Avatar

    Is it considered bad behavior to edit a kata to add a new language when the author seems to be inactive and therefore can't approve my translation ?

  • KiparD Avatar

    Hey! I'd like to write little series of katas about poker. I started from easiest one. I would be very appreciate if you spend few minutes and leave your feedback. Try it

  • Mastermind_sap Avatar

    how can i create my own kata? I have already reached 84 honor and got a notification that i can create my own kata.But i cannot find the option where i can create it.Please help!

  • tenick Avatar

    My first ever kata: https://www.codewars.com/kata/5efa0e7bc41b4e0019993895/ Please take a look and tell me what you think!

  • legendaryme Avatar

    Is it possible to approve a translation without a kata author? I've made a kotlin translation for a kata, but an author of the kata seem gone.
    Would someone mind reviewing this, please. Thank you!

  • juggler39 Avatar

    Hello everyone, I've created my first Kata in JavaScript, I would be glad if you look at it:

    https://www.codewars.com/kata/5ed7d6136813b5002db69baa

  • Fbasham Avatar

    I have the ability to approve Python kata apparently (haven't checked other languages). Just wondering what are the best practices for this? I went about approving 2 already, but got some flak from other users. Am I missing something here?

  • Mewriick Avatar

    Hello, please check my first C# Kata, I will be very grateful for any kind of feedback https://www.codewars.com/kata/5ecbe635b82876002d3f40b1

    Thanks a lot

  • user5075348 Avatar

    Hey, please check out my first kata, will be very grateful for your feedback https://www.codewars.com/kata/5ec15ab4cb77f50001300cad/csharp

  • FrankK Avatar

    I posted this comment before but will post again: while easy kata's that are not interesting or original are approved all the time easily, some hard and cool kata's are Beta for years. Maybe this can be improved. I have a quite hard and cool kata that has never been approved, can please somebody do?

    Kata: https://www.codewars.com/kata/5879336c92074d45c500016c

  • pulkit7944 Avatar

    Hi, I have created my first kata,pls suggest me how can I improve my present and my future kata. link to my kata: https://www.codewars.com/kata/5ec3867dce108b0015a5f23b

  • acibiber53 Avatar

    So, I was trying to group most solved katas according to teaching order. When I arrived to dictionary topic, I couldn't quite find many katas about it. I wrote a simple one myself, but since it is simple, it got downvoted, and I guess auto-retired.

    I am teaching Python to total strangers of programming. They sometimes have problem with even the simplest concept. It is important to give them questions with context, so they can feel the usefulness of different concepts. So, imo, having more of these fundamental katas of different stories is only helping people who want to get into the coding, even if it is quite easy to solve for 1 kyu user.

    Besides, I didn't even get a chance to edit anything before the retirement. I published it, slept, woke up to see it got retired. It is a bit disappointing to see all the effort got scratched without an explanation or chance to amend. I mean I will continue to try, but all I am saying is it happened so quickly, it might be discouraging for new kata writers.

    This is the link for kata: https://www.codewars.com/kata/5eb85e06a4dc5800325a42ad/python

  • lonkaan Avatar

    Hi, I've created my second Kata, I would be glad if you look at it:

    https://www.codewars.com/kata/5eb5155b80e7b8002dd10226

  • oybek Avatar

    Scala programmers - need your look at kata Optimal sort

  • Cépagrave Avatar

    Hi, I've Created this kata: https://www.codewars.com/kata/5e9ce15e9a872f002dc6dc94 There are several things i don't understand: I was hesitating how to rate its difficulty, and set it first at 5 kyu. But a friend told me it should really be 3 kyu. I modified it, and it now appears in the kata search engine only when looking for a 5 kyu kata, even though it's labelled as a 3 kyu. Much worse : The stats are indicating that it's been completed 5 times, but i can see only two solutions : mine and Voile's now invalid one. I know from a friend that he's solved it. Why can't i see other solutions ? Stats again, say that the kata has been satisfying for 38% users out of 4 !!! No need to be a great problem solver to detect that there might be a problem to solve here. So, please help me, is there something i've done wrong or misunderstood ?

  • OmNomRarg Avatar

    Is anyone able to take a look at my Go translation of the Simple Assembly Interpreter kata please? https://www.codewars.com/kumite/5ea0a484a1da4f0011eda445?sel=5ea0a484a1da4f0011eda445

  • YOEL311 Avatar

    Hi I'm in this kata https://www.codewars.com/kata/5588bd9f28dbb06f43000085/train/python It looks like there's a bug in the tests But I can't access the discussion page and report an error What should I do

  • user2058606 Avatar

    I'm having an issue where I want to translate a kata into Factor but it doesn't show up on the drop down menu to start a translation (after clicking on "+ add new language" and then "translate this kata", of course).

    I've been able to make translations for several other kata without running into this issue. Any ideas?

  • taryneast Avatar

    Hiya, I have a translation for a kata that I'd like someboy else to take a look at to check it seems right. I'm new to elixir and have used this translation as an exercise... I'm also brand new to translating - so it might be great or might be totally dodgy :D https://www.codewars.com/kumite/5e7d3248b2a5e10010875294?sel=5e7d3248b2a5e10010875294

  • jonnybolt Avatar

    How do I modify an existing kata to support another programming language? I just completed a kata in javascript but the only language supported is haskell.

  • dajkatal Avatar

    Hey guys! I just made my first kata and I would love if some people could try it out. I've given it an estimated rank of 4kyu because it can be overthinked very easily. However, there is a simple solution that I believe many overlook.

    Please give it a try and inform me about any errors :) https://www.codewars.com/kata/5e750dd4626ac30012e35c77/python

  • FrankK Avatar

    Hi, can somebody please approve my Seat Allocation Kata?

    It is a kind of hard but cool kata and in beta for years. It is solved by 8 people and nobody came up with a flaw in this kata.

    Thanks in advance! :)

    This is the link: https://www.codewars.com/kata/5879336c92074d45c500016c

  • YoneMoreno Avatar

    A Java kata with which makes you think 🤔👍 https://www.codewars.com/kata/5e477a54406d360001bc10f6/java

    Would you solve it?‽

  • ChanChhunneng Avatar

    https://www.codewars.com/kata/5e666b3955aec800160c2abe here is my second kata if I am wrong please correct me. welcome to get feedback and solve problem.

  • ChanChhunneng Avatar

    https://www.codewars.com/kata/5e64cc85f45989000f61526c here is my first kata if I am wrong please correct me. welcome to get feedback and solve problem.

  • naamara Avatar

    What could the error be in my code to print out the count of vowels

    def getCount(inputStr): num_vowels = 0 for vowels in inputStr: num_vowels = vowels.count(vowels) num_vowels = num_vowels+1 continue return num_vowels

    print(getCount("a, e, i, o, u"))

  • FatimaMabrouk Avatar

    how can i be on order with the level of problem in the same level

  • andrewkof Avatar

    Guys I need someones help. Im trying to publish my own kata. The task is to create a recursion function which does something but the problem is that I dont know how to stop cheaters from using while or for loops. Anyone knows what to do ? Thanks

  • zrhhust Avatar

    for kata "The Millionth Fibonacci Kata", my code run no more than 0.4 seconds in my computer, why get a timeout @codewars? real 0m0.337s user 0m0.331s sys 0m0.005s

    if i don't add print in the program, just get a timeout with nothing if i add any print in the program, it just complains about too many print in my program

  • Hippunky Avatar

    If I moderate a beta kata that is pending approval (i.e. set the difficulty), having not already completed that kata, and then go on to complete it, is it the case that I don't then gain the relevant honor for completing it?

    I understand if this is indeed the case ('cause theoretically I could've lifted the solution from the kata if I were so inclined) - just interested in knowing this - would mean I would for sure complete the kata prior to editing/approving it if so. :)

  • taylormb Avatar

    I have a kata in beta and someone reported an issue on it (they wanted random tests, which I added) how do I get the issue to go away?

  • Semps Avatar

    guy i need help HOW CAN I GET BETTER AT SOLVING KATAS(JS) LIKE THE LIKES OF @BattleRattle

  • jamesdbruner Avatar

    I have a kata that I've put together https://www.codewars.com/kata/bananas-1/javascript but it keeps getting auto retired without any feedback for why people are downvoting it. I also can't delete the kata so now https://www.codewars.com/kata/bananas-1/javascript and https://www.codewars.com/kata/banana/javascript exist (because the original banana one was retired and I can't delete it). I've been updating the test cases as I see incorrect solution get around my tests which is why I think it's getting downvoted but it's just annoying that I'm trying to work through any issues that my kata has but before it even gets a real chance it's automatically retired.

    Any help would be appreciated! What am I doing wrong?

  • kurokikaze Avatar

    Hello! Made a new kata, please try it and leave feedback.

    https://www.codewars.com/kata/5d4bed7c7a528071756060d8/train/javascript

  • oybek Avatar

    What is the process of moving kata from Beta to official publish?

  • saitis13 Avatar

    hi every one . i am new , so i listen and learn...

  • user7552630 Avatar

    New kata, it needs testing and some feedback ! https://www.codewars.com/kata/electron-ionization

  • askerovtamerlan Avatar

    Why at my profile i have completed only 4 kata's, but stats display already "11" (it was starts from 8 number as i remember)

  • baduker Avatar

    A new kata in need of testing and feedback - https://www.codewars.com/kata/5cf293be97d5f8001075d0b2

  • Ian T Avatar

    I have just created a new C# kata https://www.codewars.com/kata/5cf8e2692ad4650001ce9b5b

    It is related to the Thue–Morse Sequence.

    Anyone fancy a go :)

    I did a search for similar kata and found the following three that use the Thue-Morse Sequence: https://www.codewars.com/kata/5998ce70a499a7926a0000a8 https://www.codewars.com/kata/591aa1752afcb02fa300002a https://www.codewars.com/kata/589a9792ea93aae1bf00001c

    I believe my Kata is sufficiently different that it is not a duplicate. All the existing Kata look at the first n terms of the sequence, two creating, the third validating. My Kata is about calculating just the nth term and has higher values of n.

  • Lowest Avatar

    please tell me how to create kata? can anyone help me please

  • baduker Avatar

    Here's my first simple Kata.

    https://www.codewars.com/kata/5cf26f26e102160014d4af44

    Any feedback is appreciated!

  • Ian T Avatar

    I have a (c#) kata "awaiting moderator approval": https://www.codewars.com/kata/58f5e53e663082f9aa000060

    This is my first attempt at writing a kata so interested in how the process works.

    I also have a second Kata in "Testing & feedback needed" phase, if anyone feels like have an attempt at that one: https://www.codewars.com/kata/5975b4fecb487ccf2700012b

  • jordanmoore753 Avatar

    My first kata on Ruby: https://www.codewars.com/kata/5cc3514544a32d002b3c0316

    Feedback is appreciated.

  • seisvelas Avatar

    Racket only has a few kata, so I decided to make one! Testing, rating and feedback much appreciated :)

    The actual kata is to make a basic macro.

    https://www.codewars.com/kata/5ca13f1def39600014b37faf

  • buki Avatar

    sorry, but how many honor do I have to have to develop my own kata?

  • yinwei Avatar

    Pythagorean Triplets

  • stacode Avatar

    how do you create kata and where?

  • orderandchaos Avatar

    Hi, is there anywhere else I can post my kata to try to get it out of beta?

    https://www.codewars.com/kata/rummy-find-lowest-scoring-hand

  • nguyenan Avatar

    Hi every one

  • Vaults Avatar

    Hey guys,

    My kata's been stuck in beta for almost half a year now, even though almost 80 people have tried it. Apparantely it is too difficult for many (and still rated 6 kyu on average?). I think this one is a good edge case to test the efficacy of the beta process. I'd also like it if someone would take a look at the kata and approve it.

    https://www.codewars.com/kata/5aba8a75206a29494000021b

    This has been quite demotivating for me to create other katas since my other one took many months to be approved as well. I hope you can help out.

    Thanks in advance :)

  • fishcharlie Avatar

    I looked through the Codewars Wiki, but I can't find anything regarding what the requirements are to pass the beta process for a kata. Does anyone know the process for how a kata completes the beta process?

  • adazhu2802 Avatar

    Hello devs,

    I work on a problem Process Waterfowl Survey Data Results. I used spyder(python 3.6) and tested samples. It can provide corrected outputs base on the sample test. It also can figer out the incorrect input data. However, I still got 42 failures. I found the test cases results confuing me. Here are two failure samples. Two similar incorrect input data but required difference outputs - ['Disqualified data'] and [original incorrect input data].

    Fixed tests ['BLWITE', 25, 'LABDUC', 9, 'REDHEA', 5, 'STSEI', 200] should equal ['Disqualified data']

    ['AMEWIG', 45, 'BAITEA', 3, 'BASGO', 6, 'CANVAS', 10, 'MALLAR', 150, 'SURSCO', 12] should equal ['AMEWIG', 45, 'BAITEA', 3, 'BARGOL', 6, 'CANVAS', 10, 'MALLAR', 150, 'SURSCO', 12]

    Could you kindly review my code and let me know what details of restrictions I shall put in the testing? This is my code as following and it can scan the two above incorrect data and out put ['Disqualified data']:

    import re import pandas as pd

    def get_name(st): namelen = len(st)-1 if namelen == 1: name = (st[0][:6]).upper() elif namelen == 2: a1 = (st[0][:3]).upper() a2 = (st[1][:3]).upper() name = a1+a2 elif namelen == 3: a1 = (st[0][:2]).upper() a2 = (st[1][:2]).upper() a3 = (st[2][:2]).upper() name = a1+a2+a3 elif namelen == 4: a1 = (st[0][:1]).upper() a2 = (st[1][:1]).upper() a3 = (st[2][:2]).upper() a4 = (st[3][:2]).upper() name = a1+a2+a3+a4

    return name
    

    def create_report(names): if type(names[1])==int: print(['Disqualified data']) #exit else:
    name_list=[] count_list=[] new_names=[] for i in range(len(names)): name_list.append(get_name(re.sub("[^\w+]", " ", names[i]).split())) count_list.append(int((re.sub("[^\w+]", " ", names[i]).split())[-1]))

        t = pd.DataFrame({'name':name_list, 'count':count_list})
        new_t = t.groupby('name')['count'].sum()
        new_t = new_t.reset_index()
        for i in range(len(new_t)):
            new_names.append(new_t['name'][i])
            new_names.append(new_t['count'][i])
        return new_names
        
    
  • rt-hawk Avatar

    Is there a way to delete a kata that I authored? I have been waiting for someone to approve bug fixes for three months now. I posted messages a couple of times that it was fixed in the discussions to give that person a message with no succes. So, I created a new kata, copied/pasted everything from the old one, and deleted everything from the old one. I wanted the kata to be avaiable (out of beta) because the people who did sovle it were happy with it according to the feedback. (It is "a" in my authored kata list if an admin can just delete it.)

  • Valeriy4k Avatar

    Is my friend cheating? All tests passed exept one. Is it possible to see n? error: Test10 Expected is <System.Collections.Generic.List1[System.Int64[]]> with 4 elements, actual is <System.Collections.Generic.List1[System.Int64[]]> with 2 elements Values differ at index [1] Expected and actual are both <System.Int64[2]> Values differ at index [0] Expected: 559756 But was: 908566

  • trommo Avatar

    I've met a problem in Kata 'Take a Ten Minute Walk' - http://www.codewars.com/kata/take-a-ten-minute-walk/train/ruby

    My code:

    def isValidWalk(walk) if walk.length!=10 return false elsif
    ns = 0 ew = 0 for i in 0..walk.length-1 do if walk[i]=='n' ns=ns+1 elsif walk[i]=='s' ns=ns-1 elsif walk[i]=='e' ew=ew+1 elsif walk[i]=='w' ew=ew-1 end i+=1 end

    if ns==0 && ew==0
      return true
    else
      return false
    end
    

    end
    end

    All tests passed correctly, but the system tells me about an Error:

    STDERR:

    main.rb:7: warning: found = in conditional, should be ==

    But the string #7 is: for i in 0..walk.length-1 do It does not contain symbol '='...

    Is this a bug?

  • Phil157 Avatar

    Hi, I'm having difficulty with a 5 kyu kata "Factorial Decomposition" - Fortran 95. I'm pretty sure I've completed it ok and formatted the output to look exactly like the expected. But it just won't tell me I've solved a single test. Can somebody please check the test routines (or my code). I can't submit it, so can't see other solutions and can't see how to post a question to a more relevant place! Or send the author, g964, a note. (I've a back-up in a simple textfile, so I guess I can move on in the meantime). I've only been here for about a week.

  • YOSYA Avatar

    I try to create Kata. When I press Validate Solution I pass all test Time: 1511ms Passed: 7 Failed: 0. But when i try to publish Kata Final Solution is invalid. (cpp) The solution should pass the provided test cases What's wrong?

  • nangdo Avatar

    Hi , i am new on Codewar. I want to create my own collection but i dont know how. Do i need to have higher rank or honor to be able to do it?

  • CodeLord26 Avatar

    hi friends im new on codewars. I want to know how to search for a particular kata. I was solving a kata and then my internet connection went off. When internet started again i lost the kata and a new kata appeared on my screen. I want to know how can i get that kata back. This site is good but hard to navigate. I also want to know to can i upload a profile picture.

  • rt-hawk Avatar

    I am creating my first Kata. I successfully published a version with a number of Test Cases and got some good feedback.

    I just added some random Test Cases after reading a couple of tutorials. They were validated successfully when I clicked on the green “Validate Solution” button. I ran them /validated them a few times to generate a number of random tests. But, when I clicked the “Republish” link on the top of the page, I received an error outlined in red on the very top of the page:

     “Initial Solution is invalid. (javascript) The code should not pass the kata test cases”
    

    I also had an error under the Initial Solutions window:

     “is invalid. (javascript) The code should not pass the kata test cases”
    

    There is only the barest of code in the Initial Solution window. This Initial Code didn’t create any problems before when I saved my Kata and validated it without the random tests.

    What am I missing or not understanding?

  • shakti051 Avatar

    I am new on this site , plz tell me How could I see solution of any problem, boz after attempting any problem it shows msg tagain and again that Attempt or Increse your rank to see the solution.

  • KotErazm Avatar

    Stupid question. Why is sometime the Attempt button missing, so I'can't test my code?

  • jpv123 Avatar

    I want to add a few tests to a Kata but can't find how. Is because my current honor?

  • Chrono79 Avatar

    Why are katas approved the same day they're created? The beta test period should be at least one week imho. Some are out half baked and some of them are marked as duplicates after published.

  • dukies_2000 Avatar

    Once issues with my kata have been resolved, do I need to mark them off as resolved? If so, how would I do this?

  • CTingCTer Avatar

    just about finished my first kata. I gave it some tags and a title and clicked publish... Now I can't see it and there is nothing in my authored kata area. Do I need to wait for it to be approved or is it gone?

  • Naiten Avatar

    Hello. If a kata comes out of beta but has wrong tests (which makes it impossible to complete, obviously), and the author was abscent for months, is there a chance a mod will fix it? Or can warriors with high dan/kyu do that? As an example, 3 kyu kata https://www.codewars.com/kata/make-a-spiral/java has wrong tests and author was last seen in september. What can be done with it?

  • andriyrom Avatar

    Hi! I am a new user and so my question may be stupid, but I can not find answer on wiki. Maybe someone can help me. I made my first translation of Kata, but I don't understand where find people who would examine and approve my translation. Who can do it? How can I find person to contact with?

  • geekchick Avatar

    Hello, is there a way to save my work when I'm training so I can continue working on the same problem? I was working on a module then logged out and when I returned it gave me a new problem to work on.

  • Cptnprice Avatar

    Hello, how can I disable some built-in functions for kata in python?

  • avadakedavra Avatar

    i'd like to create a kata with some advanced restrictions such as max solution length and ban using standart methods like .sort() for example i can't find suitable info in testing framework documentation, help pls

  • marbiru Avatar

    Hi everyone: I'm fairly new to CW and just authored my second kata. All of my tests fail, even though the expected and actual output look identical -- even the automated/random tests fail, where the test function is identical to the solution function. E.g.:

    Expected: ['one', 'three', 'five', 'four'], instead got: ['one', 'three', 'five', 'four']
    

    Any suggestions at all for what could be going wrong, or what I can try to do to solve this? I'm using Test.assertEquals() and answer is in the form of an array. Like I said, I'm fairly new so it might be something simple I'm doing wrong, but I'm completely stumped. Thanks so much for your help!

  • mentalplex Avatar

    Hi. I've authored a few kata, which are all in beta. Is there a minimum number of completions that a kata needs in order to be approved? I'm interested in writing some more statistics kata for R, but I'm worried it might not be time well spent if they need a large number of completions in order to get out of beta. There aren't a lot of people trying R here.

  • iMrTidy Avatar

    Hi, I have published my Kata for a while now and fixed all the suggestions/issues. What can I do in order to get it approved?

  • FrankK Avatar

    Hi, when I reached 7000 honor I got a message that I could act as a moderator and approve my own kata's. How can I do that, I do have a kata that is up for moderator approval but I do not see a button...

  • kmactavish Avatar

    [Feature Request] Mark as duplicate.

    Especially in the 8 kyu range, there are a lot of very similar Kata. Is this a concern? Should we have a 'mark as duplicate' built into the beta process? Would beta tester's time be better spent on unique Kata?

  • ClaireChaCha Avatar

    Hi, I'd like to know if there's any way to know which tests my code failed? Sometimes, the code works for the sample parameter but not other tests. And I have no idea where it failed in the other test. Is there a way codewar could show what those tests parameters are? Thank you!

  • irbekrm Avatar

    Hi, I have just written my first kata, my random and example tests seem to work in terms that my own solution passes and if I try and invalid solution it fails as expected. However, when I preview it, I get this message on top of instructions panel:

    Caution: This kata does not currently have any known supported versions for JavaScript. It may not be completable due to dependencies on out-dated libraries/language versions.

    Is there any common mistakes causing this? I have googled this, and looked at my code again, but haven't found anything relevant.

    Would it be acceptable at all to publish a kata like this as then I could maybe get someone to contribute or see if some solutions are failing specific tests?

    Any feedback would be most appreciated.

  • Jocode Avatar

    Hi, my kata has been waiting for moderator approval for two days, has it fallen off the list somewhere or is there something I need to do that I don't know about. Thanks a lot!

  • EnigmaWasp Avatar

    Hello everybody! I wrote a kata but I'm quite stuck with test cases and example cases. My code is in C++. Can anybody explain how to write it? https://www.codewars.com/kata/595a92fe53e43a8746000071/edit/cpp

  • user3359372 Avatar

    Hi all,

    I authored a kata over a year ago, and it's still in beta: https://www.codewars.com/kata/55e29a6b4d99b59e98000089

    Is there something I need to do to get it published? It seems like all edits suggested have been made.

  • KH! Avatar

    hi, how to add random test cases on katas i make??

  • danilkamyshov Avatar

    So I've published a kata, but it didn't appear on the list of beta katas. What might be the problem?

  • MichaelSel Avatar

    How can I encourage people to test my betas? I wrote a bunch of katas, some are weeks old with 0 views. Any advice?

  • MikeFaQtsThiza Avatar

    I have done a perfectly working code which passes all tests but it says "Process exited prematurally with a SIGSEGV signal.". what can I do to correct this?

  • Varveyn Avatar

    As lechevalier and zruF, I have problems with re-publishing my kata.

    Maybe I'm missing something, but it looks like a bug.

  • user2514386 Avatar

    Where can you mark a kata as being ready? Or is this feature deprecated?

  • lechevalier Avatar

    Bug since a small week now: it is impossible to publish revisions. Solutions validates the tests in all versions of a language but when clicking on Publish, it always yields this message:

    Final Solution is invalid. (python) The solution should pass the provided test cases

  • zruF Avatar

    I don't know whether it's a bug or not:
    I tried to edit my already approved Kata and the validation of the solution is successfully, but i still get the error that my final solution doesn't fit the test cases. Is it possible to edit already approved kata? Can anyone help me?

  • user2514386 Avatar

    Does the kata always have to be seen by a person with more than 3000 honor to come out of the beta stage?

  • FrankK Avatar

    The beta process seems to favor easy and simple katas. What is your opinion?

    I put a lot of effort in some challenging katas but there were less than 10 solvers. And now they are moved out of sight. Is there a way to get them approved anyway?

    Example is https://www.codewars.com/kata/6-by-6-skyscrapers/csharp. I especially created this kata because there were no katas for C# that are more difficult than 4 kyu! No problems reported for this kata.

  • pavloslav Avatar

    Rust fails 2 times of 3 on compiling. It's fRUSTrating.

  • PMV Avatar

    Is there a process by which a beta kata that is seemingly abandoned can be updated by a new sensei? https://www.codewars.com/kata/2048/javascript has the potential to be a good kata, but one set of the author's random tests is broken, making the kata effectively insoluble (unless you get really lucky) since the introduction of random tests two months ago. I logged the issue again, as it had been previously reported in comments to a resolved issue, but the author hasn't been around since October so I am not sure it will get fixed.

    It is a shame because it's kind of a fun little problem to solve.

  • mmalkavian Avatar

    I want to rewrite here again a reply I gave to Blackmetalmcdonalds some threads further about Beta process suggestions:

    What's the point of making some challenging kata that will always stay in beta (with maybe 5 people solving it), if people keep making 8kyu katas about string reversing? How can a 4kyu/3kyu (let alone 2kyu!) kata can even come to existence out of beta if it will take forever for enough people to solve it and rank it?

    I shouldn't say this as I've authored myself a string reversing kata, but it was still a challenging Shell language kata; so why have I done that? I had to translate it in javascript and python to make it popular with the result that it has become very easy in these 2 languages (and even got some down-votes).

    My possible suggestions:

    • give the honour points after solving and ranking;
    • decrease the amount of honour points awarded after many people have solved a kata (to reward the real pioneers and encourage the research of old beta katas and the difficult ones);
    • reduce/remove honour points for katas officially ranked 7/8kyu;
    • remove points if you create obviously duplicate katas;
    • reduce points if you make a long streak of weak katas;
    • reward authors of katas with many warriors training/skipping if the kata has no issues and it's just plain hard;
    • force users to author katas at some point;
  • The Mauler Avatar

    Hi, when solwing the SQL kata i always get the error "expected true to respond to true? or perhaps you meant be true or be_truthy" is it some kind of error in the python script that is failing. I know that i have the postgreSQL part right. So what is the issue? I know that the SQL part is in BETA, but if it is not possible to submitt correct katas then what should i do. And yeah the discussion tab is not applicible in the SQL katas.

  • dloomb Avatar

    I was recently asked this (https://www.codewars.com/kata/algorithms-interesting-times-in-digital-clock-display) in an interview. I authored a Kata for it and I'm trying to get it out of Beta. I googled pretty extensively and couldn't find any other solutions for it.

    Any thoughts or input would be appreciated.

  • Blackmetalmcdonalds Avatar

    I know a few people have mentioned this already. But it would be great to find a way of encouraging users to solve some of the more difficult beta kata. I personally would like to see more difficult katas on the site and have seen the poor response that difficult katas in beta get. It may also be worth making approval ( or disapproval ) mandatory on completing katas, I'm guilty of not always marking them myself and lots of people complete the kata (with issues or not) and don't rate it.

  • paulrichard Avatar

    I think maybe the minimum honor before being able to upload katas should be of 100 ?

  • matt c Avatar

    I think the approvement process still has some problems. Some approvers don't seem to take the care in checking the kata thoroughly which results in very bad translation versions especially for new kata authors who just approve the translation, or problems that were found but not fixed. Obviously not all problems can be detected before leaving beta but a lot seem to be ignored if they aren't marked as an issue. Duplicate katas also probably need a firm definition so katas that are similar in nature don't keep getting released because of an approvers negligence to check for them. Also best practices for katas seem to be ignored, if a new author created a kata it should be the job of the approver if no one has addressed it to ensure the katas testing fixture follows the best practices. It seems like as soon as a kata can be approved it's a race to approve the kata without checking the above mentioned things.

  • adamdharrington Avatar

    Can shout out to any JavaScript people, I created a (reasonably) difficult kata and can't get people to try it... It's probably a Lv4? If anyone wants to give it a go and try get it out of beta that would be great! https://www.codewars.com/kata/horror-top-trumps-card-game

  • zardoxnet Avatar

    How can I view the input parameters for a test? For example, I have completed running code, and run the example tests, no errors are shown. Next, I click on "Run Suite" and a series of other tests are run against the function. How can I see what exact parameters produced an error?

  • user7973646 Avatar

    could someone please approve my rammstein kata, i've been waiting like a month

  • zardoxnet Avatar

    Why is PHP not included in the selector for Language on the Kata page? I want to list all Katas that include PHP as a language for the first 3 levels

  • user2821739 Avatar

    The server error 500 is pretty frequent and creates problems when I try to process a beta kata or approve someone's translation. Can't we do anything about it???

  • OverloaD_UA Avatar

    Who can tell how to properly execute the code for Swift ? I created a class and method, but it is not executed.

  • haugk Avatar

    I have just created my first kata and ran into the following problem: the initial solution (sometimes they call it the 'solution setup') that I have specified in the kata creator is not the one shown in the training section when a user wants to solve it. Any ideas?

    The kata can be found here: https://www.codewars.com/kata/sliding-tile-puzzle-worker You can see how the module name in the 'Solution' differs from the name of the imported module in the 'Example Test Cases'. To clarify, the 'Example Test Cases' is right, the 'Solution' has got it wrong. The 'Solution' show is not the 'Initial Solution' that I have specified in the kata creator/editor.

  • user5200009 Avatar

    i puslibhsed my first Kata today. it's a 1-2 kyu Kata so i know that limits the audience a bit. i'm going to be doing a series on these that teach people about different evaluation strategies. i would very much welcome any feedback. https://www.codewars.com/kata/57c4a31f0a32cae2a800065b

  • hencethus Avatar

    Is there something wrong with this kata?

    Over 2 years in beta seems excessive.

  • suic Avatar

    Hi, I have a question and two suggestions to the beta process.

    Question: What happens/should happen with duplicate katas event. duplicate translations? Are they removed or they remained in beta forever?

    I find identifying duplicates tedious and boring. When I solve or translate a kata I don't care much about duplicates and don't want to spend time on this sort of admin stuff. (Sorry if my approach is too selfish.) Therefor I want to suggest these two things:

    1. It would be nice to have a kata merging mechanism which could merge two or more similar katas to one kata including the solutions and translations. I'm not sure how difficult this would be.
    2. There could be some indication of similarity in the kata create form e. g.: When one fills in the name of the new kata it could indicate that there's a kata with a similar name. This could prevent some duplication.

    Regards,

    suic

  • Billy5500 Avatar

    Hello fellow coders! I'm having some trouble with this kata, and I have no idea which tests I am failing so any help without giving me the whole solution would be great: On Test 1, the first three cases I'm supposed to return false while I seem to be returning true.

    My code:

    function isTriangle(a,b,c){
      if((a <= 0) || (b <= 0) || (c <= 0)) {
        return false;
      }
      else if((a + b < c) || (a + c < b) || (b + c < a)) {
        return false;
      }
      else {
        return true;
      }
    }
    
  • Jazzis18 Avatar

    Hello! How I can translate the kata?

  • int3_0xcc Avatar

    Why isn't my Kata showing in the search results? I've created my own and everythign passed, you can access it if you have the link or via my profile. It doesn't show up in the search results though so nobody else can find it.

    Is it because the website is buggy recently? How come other peoples Katas are showing up ( added more recently? )

  • snormandeau Avatar

    It would be nice for those creating katas and for those approving Katas to make sure the tags are right. For example, I am seeing several katas in the beta process in python that involved classes (A concept I am having difficult with) and oftentimes the tags "classes" is not there. So I click for nothing on the kata. The same is true for several other tags (recursion, bin, etc).

  • stephengo Avatar

    It would be great if we could get more instruction on the specific features on the beta site. Also, a way to fork current questions to modify and re-publish could be a great way to help new posters.

  • cun3 Avatar

    Not sure if it is off topic, but a small query.

    How do I ensure the code challenges here to reflect on my Github account? I have logged in with my github account, Is there a way to export to it?

  • suic Avatar

    Hi, I have 5 translations which are not approved. I'm waiting for 2 months, 1 month, 2 weeks, 1 week and 1 week to get them approved.

    This process of approval should be improved. The current status is discuraging. :(

    Thanks,

    suic

  • furblegurker Avatar

    Hi, loving this site!

    I'd really like to access F# but the CLI / GitHub page mentions its currently only available with 'Kumite' ?

    Can anyone add anything to this?

    thanks

  • bigtallsimon Avatar

    Just joined the site and like what I see so far. Not sure if this is the right part of the forum, but I'm wondering about the 'not yet supported' languages. What are the barriers to supporting more languages? I may be tempted to help add support for, say, C++ but right now it's not clear how I could contribute...?

  • Scopula Avatar

    There are almost as many katas in beta as approved and large majority of both are low level katas.

    You really should consider increasing the incentive to 1) Attempt katas in beta 2) More efficiently approve betas 3) Create higher level katas

    How long does it on average take a new kata to get approved? Not very appealing to create katas when it will take many months to be approved.

  • ecolban Avatar

    I have spent a tremendous time authoring kats just to see downvoted and stuck in the beta process. How do I mark an issue as resolved? Could someone help me. I am about to delete all katas that I have authored that are still in the beta process (which means all of them). Some of the comments are good and I have tried to address the as well as I can, but others I have problems putting up with. I cannot comply with everyone's preferred wording and style.

  • HerrWert Avatar

    I've written my first kata and my own solution to it, but it fails the validation. I can't see where there's anything wrong with my code. Maybe there's something wrong with the way I entered the test data. Is there a way to get help with this?

  • nbeck Avatar

    Here since one month, I start to play with beta kata, and I'm little puzzling. Once I had finish one kata I do not understand how to vote for them and how to rank them.

    I suppose that is at the top where we found the ranking panel and the 3 smiley faces, but when I click on it that seems to do nothing. Have I missing something ?

  • jacobb Avatar

    I get a lot of negative feedback about kata translations that I did not write, and many I didn't approve. Translations need to go through a beta process rather than a one-person approval.

  • smile67 Avatar
  • do0fusz Avatar

    I would suggest to opt-out for beta's, it's a terrible experience to get a beta kata everytime you press the next button. Most beta's are in beta for a reason, and although you can tinker with them for days, it's not a very user friendly experience.

  • matt c Avatar

    I think there should be a system in place to revive (dead) beta katas, the ones that only have a few attempts because they usually just keep getting pushed down and untouched. Which I find is a waste of effort for the people who put their time into writting the kata. I don't know of a way to fix this just making it known. :)

  • heathyates Avatar

    I finished two kata recently and submitted, but they are not showing completed. What must I do to move past kata that I am passing the unit tests for? Thank you.

  • Eliv Avatar

    Can we design kata focused on math? How "non-math" must a kata be in order to be acceptable?

  • doublenns Avatar

    How do I contribute to a Kata -- either by translating to other languages or proposing edits to instructions?

  • Katbow Avatar

    I think there is a bug regarding issues with a kata I authored. It says there is 1 minor issue reported, however, when I check there is only 2 issues, both of which I have resolved. Does this prevent moderator approval?

  • dokwork Avatar

    How long I need wait, before my kata will republished (hours or days)?

  • jacobb Avatar

    I believe that the approval process needs to be expanded. There are kata with issues that could be addressed, but they're uneditable (and from what I imagine, for good reason). However, if there's a problem, there's no explicit process to correct the problem. I believe that, perhaps, a versioning system could help with that. Change a kata, put it through for approval via the same process. Give some additional honor value to participating in reapproval, and then retire the previous version when the new version is approved.

  • Jotha Avatar

    More and more often I see katas concentration on the same coding problem. Indeed, it's good to have a great amount of easy and simple katas for beginners, but I miss a function to flag katas as a duplicate when they are in Beta Process. I'm oonly able to point out this situation as an issue. Maybe there should be a possibility to mark a Beta kata as a duplicate where you can put the original kata's URL. Afterwards, someone (e.g. a moderator, ...) has to check if these two katas concentrate exactly on the same problem and decide wether the kata is accepted as new or rejected as a duplicate. This should avoid kata spamming and the original kata's author gets the honor he deserves!

  • iamstone Avatar

    I've created a kata and two people kumited a translation. I changed the task and the translators updated their translation also. But in the translations mask I still only see their old version. Does that take some time to be up there or waht's the issue there? Thanks for any help

  • Soreine Avatar

    How do we upvote katas in beta process ? I can't find a place where I can click on the upvote counter to add mine. Thank you for your help

  • kjsndkasjnfdksaf Avatar

    Вы все пидары :)

  • user4892381 Avatar

    I have a problem with the sorting of Test Results.

    The excercise says: "Given an array, find the duplicates in that array, and return a new array of those duplicates."

    Since i use a map in my function, my results are not sorted at all. The description does not give any information about how results should be sorted. Now I'm stuck with an error saying: "[1, 3, 4] should equal [4, 3, 1]"

    What could I do? This is the first (and most simple?) exercise ;)

  • bstenzel Avatar

    I'm a little confused about the translation process. I've translated two katas yesterday and published them. What happens now? Do I wait for someone with the necessary ops to approve them or something?

  • DivyanshBatham Avatar

    I want to know exactly when are the beta katas approved? I have seen many beta katas which are being completed more than 500 times and have several upvotes but they are still beta katas, why is it so??

  • Deantwo Avatar

    In my Kata Highest and Lowest, I just noticed that the person that made the Java translation actaully didn't finish the Test Cases or even did it correctly.

    But I can't edit the Test Cases anymore it seems, maybe because it is out of the beta phase. How can I fix this? Or who do I ask for help?

  • parabola949 Avatar

    I guess I'm not understanding how this works. I chose to translate an existing Kata. The site created the translation as a Kumite. I've published it, then asked a friend to check - he says it's locked, and I can't find it anywhere on the site except under my published Kumites. Am I missing a step? http://www.codewars.com/kumite/5511c2185090637b43000580

  • MMMAAANNN Avatar

    Currently, edit access to kata is only available to:

    • author,
    • moderator,
    • translator (during beta process only, as far as I understand).

    There are already a lot of 'abandoned' katas, e. g. with their author inactive. I am sure that moderators do not have enoght time to keep track of all these katas. This results in a lot of unresolved issues in such katas.

    Another problem is that after beta process is finished, translator's do not have a way to improve their translations directly, but only through discussion page. If kata is abandoned or if author is not very proficient in the translated language, this poses a problem.

    I suggest to make it possible to assign contributors to katas. This should mean that author or moderator can provide certain warrior with a power to edit certain kata directly for a certain period of time (or indefinite). Alternatively, if author is inactive, there could be an option to express willingness to maintain the kata, which can be approved by moderators if author does not respond in a week.

  • MMMAAANNN Avatar

    Currently, as far as I understand, people get 3 honor points for solving katas in beta.

    I suggest to keep giving those three points, but not just for solving the kata, but also for grading it:

    • when warrior solves a beta kata, he gets 1 point.
    • when warrior grades difficulty of the kata, he gets another 1 point.
    • when warrior votes for the kata as "ready", "minor issues", or "major issues", he gets the third point.

    ...and when kata is finally approved and out of beta, warrior should get the amount of points corresponding to kata level (if, of course, his solution is still valid).

  • DivyanshBatham Avatar

    In the Trainer of kata I'm currently creating "Your Test Cases:" are coming out of nowhere? Earlier I put them while creating the kata but after my first Preview of kata I deleted them in the kata's editor and again when I previewed my kata Those deleted "Your Test Cases:" came back. Then i tried to delete them in the Preview and returned to kata's editor and it prompt about local edits so i saved it and now in the kata's editor those "Your Test Cases:" are not there but when i preview the kata them came back in the preview mode......I'am so confused please help

    If you want to get the video of what's happening then put a comment and I'll make one and post a dropbox link.

  • metasean Avatar

    I'm trying to create a Kata for my clan. While I can find all kinds of great information on creating Katas (e.g. 1, 2 below), I can't find the link to the actual Kata Creater / Kata Editor.

    Based on [1] I assumed it would be in my user icon drop-down, but all I have there is [View Profile, Account Settings, Edit Languages, Sign Out]. I've been through each of the three linked pages [View Profile, Account Settings, Edit Languages] and don't see it there either.

    How do I access the Kata Creator/Editor?


    [1] http://www.codewars.com/docs/kata-creator

    [2] http://www.codewars.com/topics/kata-best-practices


    p.s. for site admins - the feedback button in the lower-left navigation doesn't link to anything for me

    p.p.s. for site admins - on 404 pages there is a broken email link to request help (points to info@codewa.rs which is bounced by the server)

  • Unnamed Avatar

    I can unpublish a kata translation but how do I delete it so that it doesn't show in my drafts list?

  • oldccoder Avatar

    I expect this has been asked before, but is there a way to insert a smallish graphic into the kata description? I thought I had encountered one or two but was not thinking about my kata at the time. I believe a graphic will enhance the details greatly. I did, however, leave a link to the graphic, in any event. Thanks for your assistance!

  • sohilpandya Avatar

    Hi, My Kata " Simple Maths Test " says that it has 1 major issues, yet when I look in the comments section, I cannot see this any comment showing up as an issue.

    I have responded to every message that has been put forward by the community.

    Hope someone can help.

    Thanks.

  • blr_Oliver Avatar

    [Suggestion]
    Beta process REALLY should have some mechanism of detecting duplicates. This mechanism should also consider katas in other languages and suggest the author sensei to prefer translation rather then creating new kata.

    Have only primitive idea about how such a mechanism could be implemented: every kata should have set of tags describing its point, as detailed as possible, and mechanism should try to look for katas with similar set of tags or so.

  • RVdeKoning Avatar

    Okay, someone gave my Kata a Minor Issue for I had to prevent the possibility of cheating. So I fixed it straight away, but:

    -I don't know who placed the Minor Issue;

    -I can post all I want on my Kata, but the person who placed the Minor Issue is not removing it/changing it to "Ready"

    How to solve this?

    Kata: http://www.codewars.com/kata/greatest-common-divisor/discuss/python

  • DiegoBao Avatar

    How do I help translating existing katas to other languages?

  • MarkMyb Avatar

    morning all how does one go about adding additional assemblies to your kata?

    doing the 254 sahdes of grey kata but i need to reference system.drawing