Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for daviewales‭

Type On... Excerpt Status Date
Comment Post #295550 You have to press Ctrl-D to signal end of file. Or you can put it in a script file, and pipe the value into it.
(more)
7 months ago
Edit Post #295550 Initial revision 7 months ago
Answer A: Lone ​​​​​​ones
Bash, 53 bytes ``` sed 's/\(.\)/\1\n/g' /dev/stdin|uniq -c|grep -c '1 1' ``` 1. Add a newline after each character. 2. Count the number of characters in each group with `uniq` 3. Count the number of groups with only one '1' with `grep`
(more)
7 months ago
Comment Post #291091 Thanks! I've updated it.
(more)
7 months ago
Edit Post #291091 Post edited:
7 months ago
Edit Post #291091 Post edited:
7 months ago
Edit Post #291091 Post edited:
about 2 years ago
Edit Post #291091 Post edited:
over 2 years ago
Edit Post #291091 Post edited:
over 2 years ago
Edit Post #291091 Initial revision over 2 years ago
Answer A: The 50 substrings that validate any string of Roman numerals
Python, 338 bytes 534 bytes: This is not golfed in any way. But it's the current winner! ``` python def validateromannumeral(candidate): invalidstrings = ["CCCC", "CCD", "CCM", "CDC", "CMC", "CMD", "CMM", "DCD", "DCM", "DD", "DM", "IC", "ID", "IIII", "IIV", "IIX", "IL", "IM", "IVI"...
(more)
over 2 years ago