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.
Why isn't [2,0,2,4] == [8,0,0,0]?
I believe there is an issue with Python random tests.
In the below case -1 was expected, but I believe it should be 1 (Bob).
Bob goes first, finds 'hets', Alice goes next, finds 'lets'
Bob goes again, finding 'jets', but alice can't find any word.
Therefore, bob should win.
word = 'hets'
first = 1
alice = ['brow', 'call', 'curs', 'calf', 'khis', 'gley', 'hogs', 'tort', 'neum', 'stow', 'five', 'cete', 'tuck', 'eery', 'sale', 'lads', 'daks', 'tete', 'doze', 'yarn', 'shog', 'coax', 'tufa', 'lins', 'soda', 'axil', 'hang', 'yolk', 'pity', 'levo', 'germ', 'acid', 'owly', 'rows', 'high', 'hack', 'seme', 'brad', 'dial', 'trek', 'tads', 'dada', 'link', 'wigs', 'ably', 'twin', 'rice', 'mixt', 'cavy', 'birl', 'duly', 'cels', 'gyms', 'vent', 'jill', 'reek', 'drow', 'ruse', 'meno', 'lets', 'syce', 'hubs', 'bids', 'wren', 'imps', 'dots', 'heel', 'ceps', 'haen', 'grey', 'gats', 'topi', 'fuji', 'swob', 'odor', 'also', 'kite', 'mosk', 'bald', 'lugs', 'runs', 'nill', 'mugg', 'frog', 'spae', 'hobo', 'bout', 'cage', 'lone', 'sols', 'sits', 'puri', 'egos', 'bins', 'cede', 'tent', 'hoot', 'mega', 'axed', 'gamy']
bob = ['soap', 'pale', 'howk', 'gams', 'chow', 'waxy', 'maxi', 'pert', 'raya', 'hadj', 'veil', 'must', 'akee', 'wore', 'skeg', 'koph', 'meta', 'lops', 'kefs', 'weel', 'gamp', 'gong', 'vier', 'game', 'watt', 'snug', 'hets', 'nome', 'emmy', 'uses', 'lipe', 'lark', 'adds', 'pois', 'dugs', 'leap', 'sops', 'ewes', 'oils', 'tyes', 'mash', 'blew', 'mutt', 'vane', 'idyl', 'duro', 'dare', 'dyed', 'grue', 'clew', 'cavy', 'when', 'auto', 'surd', 'pane', 'curf', 'aunt', 'vugs', 'geld', 'lazy', 'pest', 'qaid', 'mope', 'owly', 'burs', 'tora', 'fibs', 'home', 'ants', 'cask', 'dyes', 'cods', 'jeep', 'kola', 'durr', 'spay', 'ween', 'does', 'fumy', 'koel', 'kadi', 'dace', 'ance', 'fend', 'moil', 'hand', 'mayo', 'derv', 'spit', 'fens', 'poly', 'pita', 'spew', 'nigh', 'fuze', 'peri', 'jets', 'jock', 'talc', 'waws']
I enjoyed this Kata a lot, but it has the wrong level.
Based on other katas I have solved I feel this is lvl 6 or possibly 5.
This is not level 5.
This is level 7.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
I actually enjoyed the flavour of the dish, but you should have removed the whole spices before serving it ;)
I didn't like this one at all. I solved the basic problem in like 1 minute, then had to spend another hour matching the required output format, which to be honest was super weird.
Is there something wrong with the error message?
I'm literally returning exactly what I'm supposed to...
[Token(chars='x', type='identifier')] should equal
[Token(chars='x', type='identifier')]
[Token(chars='true', type='boolean')] should equal
[Token(chars='true', type='boolean')]
[Token(chars='12345', type='integer')] should equal
[Token(chars='12345', type='integer')]
[Token(chars='"String"', type='string')] should equal
[Token(chars='"String"', type='string')]
[Token(chars='break', type='keyword')] should equal
[Token(chars='break', type='keyword')]