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.
problem with testing after final submit:
should pass basic tests
Log
Testing: zone,abigail,theta,form,libe,zas,theta,abigail, 2
Actual: abigailtheta
Expect: abigailtheta
Testing: ejjjjmmtthh,zxxuueeg,aanlljrrrxx,dqqqaaabbb,oocccffuucccjjjkkkjyyyeehh, 1
Actual: oocccffuucccjjjkkkjyyyeehh
Expect: oocccffuucccjjjkkkjyyyeehh
This comment is hidden because it contains spoiler information about the solution
after cliking "ATTEMPT"
Actual: arp, live, strong
Expect: arp, live, strong
Actual: arp
Expect: arp
@steffan153 Nothing is visible. There is a
red arrow
to left of "KataTest". It's expand/collapse feature. But expanding it doesn't show anything.@mahesh2492 Were you able to proceed so far ?
@Technetium_Phenol Oh, C'mon :D It's 21st century, forget Fortran and come to Scala :D
Just faced
1 was not equal to -1
error on final 'Attemptstage. After debugging (adding print statements to check input parameters) found out that
kparameter value was
< 0` Just shared a hint here to help someone ;)@mahesh2492 You can add a print statement for any random failing test by
if
condition to print all input parameters as well as your return value.print your return value to find out which test is failing and then add checks accordingly.
This comment is hidden because it contains spoiler information about the solution
Okay, that was indeed overflow issue. My buffer was initialized as Int. Thanks for quick response!
Okay, that was indeed overflow issue. My buffer was initialized as Int. Thanks for tip!
Same issue
-1961650628 did not equal 2333316668 for scala
Test Failed
-1961650628 did not equal 2333316668
(Scala) Please add an example with explanation how result is achieved. I'ts not easy to understand. It's obvious why only 4 times this Kata has been completed so far.
def horMirror(strng: String): String = { // your code }
strng
should be replaced withs
orstr
vertMirror
orhorMirror
is not proper name. Please avoid such shortcuts.This comment is hidden because it contains spoiler information about the solution