Draft
guess
Loading description...
View
This comment has been reported as {{ abuseKindText }}.
Show
This comment has been hidden. You can view it now .
This comment can not be viewed.
- |
- Reply
- Edit
- View Solution
- Expand 1 Reply Expand {{ comments?.length }} replies
- Collapse
- Spoiler
- Remove
- Remove comment & replies
- Report
{{ fetchSolutionsError }}
-
-
Your rendered github-flavored markdown will appear here.
-
Label this discussion...
-
No Label
Keep the comment unlabeled if none of the below applies.
-
Issue
Use the issue label when reporting problems with the kata.
Be sure to explain the problem clearly and include the steps to reproduce. -
Suggestion
Use the suggestion label if you have feedback on how this kata can be improved.
-
Question
Use the question label if you have questions and/or need help solving the kata.
Don't forget to mention the language you're using, and mark as having spoiler if you include your solution.
-
No Label
- Cancel
Commenting is not allowed on this discussion
You cannot view this solution
There is no solution to show
Please sign in or sign up to leave a comment.
Issues below are not resolved...
Naming the kata as
guess
does not add more context to users when it comes to solvingNot providing any hints in description does not add more context to users when it comes to solving
Not providing sample tests to reveal some hints does not add more context to users when it comes to solving
Not providing fixed tests to reveal some hints does not add more context to users when it comes to solving
Please refer to katas like these when writing puzzle katas
So, because the regex pattern you expect is so basic you made understanding what it is the entire challange?
I guess it could pass for a kata (not a fun one), but you need to actually name the kata and provide a description which explain this, or at least not misdirect. (since the pattern is not pattern relating to 'nothingess' or 'empty' strings but actually to the input numbers).
done
So... you not gonna tell the input string or anything? That's not good. How will the user know which passes and which is not?
maybe he want user to find the solution from the result
@SmallWolfxDDD that part I do understand that. From the blank description and no sample tests, I can directly conclude that this is a puzzle kata and I have to analyze the input to create the solution. The problem here is that I can't even figure out what the input to start figuring out the solution of the problem.
Look at this:
The only times I can see the full input is when it fails. The tests directly show pass message on expected result.
My code is:
sol = r"^.+$"
which captures the full input when ran with regex match method (Shouldn't be marked as spoiler since this is necessary for context of problem)yes I get the same result when I use
r'.+'
Well, I can fix that.
done