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.
Thanks. My bad.
So, after reading the details of this kata I was unable to understand one thing.
For example, I have an input "111". I have no way to distinguish a dot from a dash in this case. What do I do in this situation?
I would recommend looking through inputs into "opp" function.
In c# test
expected
andbut was
answers are flipped (at least for isCheck).Thanks.
Expected: True
But was: False
Very informative
I got stuck on random test.
So in test the input was
(-1j+26)^3
, but in other test the input was(-n-12)^5
.Is it ok that there may be (-1) or just (-)?
This kata should block System.Reflection, but no. Fix please.
Okay, my fault.
As it is showed in instructictions the input should be separated with '/' and then build up.
GenerateBC("mysite.com/pictures/holidays.html", " : ") == '<a href="/">HOME</a> : <a href="/pictures/">PICTURES</a> : <span class="active">HOLIDAYS</span>';
.Doing by this strategy:
GenerateBC("twitter.de/wanted/or-uber-uber-a-from-biotechnology-for/funny.php#people?sortBy=year", ";") == <a href="/">HOME</a>;<a href="/wanted/">WANTED</a>;<a href="/or-uber-uber-a-from-biotechnology-for/">UUB</a>;<span class="active">FUNNY</span>
.But Kata throws exception that answer should look like this
<a href="/">HOME</a>;<a href="/wanted/">WANTED</a>;<a href="/wanted/or-uber-uber-a-from-biotechnology-for/">UUB</a>;<span class="active">FUNNY</span>
.c# (twitter.de/wanted/or-uber-uber-a-from-biotechnology-for/funny.php#people?sortBy=year - example, ; - separator)
Expected: "...nted/">WANTED ; <a href="/wanted/or-uber-uber-a-from-b...";
But was: "...nted/">WANTED ; <a href="/or-uber-uber-a-from-biotechn...";
Why "wanted" should jump to next a href
Random Tests
(http://www.pippi.pi/pictures-you-wished-you-never-saw-but-you-cannot-unsee-now/by/login.php#top - example, : - separator)
Expected: "...">PYWYNSBYCUN : "<a href="/pictures-you-wished-you-neve..."
But was: "...">PYWYNSBYCUN : "BY : <span class="a..."
As I can see the "pictures-you-wished-you-never-saw-but-you-cannot-unsee-now" repeated twice in answer.
Expected: "...es/">PICTURES / <a href="/pictures/bioengineering-for-..."
But was: "...es/">PICTURES / <a href="/bioengineering-for-bed-uber-..."
n will always be n % 2 == 0, because every factorial is a factor of two. What sense in saying "If the sequence has a even length n"?
My bad, sorry
In c# sample test the archaeologist has gone mad:
-5?*-1=5? has 9 answers.
-50 * -1 = 50;
-51 * -1 = 51;
....