Skip to content
View quackbarc's full-sized avatar
🧱
throwing bricks at people
🧱
throwing bricks at people

Block or report quackbarc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. a fizzbuzz pattern made with pure regex a fizzbuzz pattern made with pure regex
    1
    ```regex
    2
    \b(?:(?<fizzbuzz>(?:(?:[369]|[258][0369]*[147]|(?:[147]|[258][0369]*[258])(?:[0369]|[147][0369]*[258])*(?:[28]|[147][0369]*[147]))*(?:0|(?:[147]|[258][0369]*[258])(?:[0369]|[147][0369]*[258])*5))+)|(?<buzz>\d*[05])|(?<fizz>(?:[0369]|[258][0369]*[147]|(?:[147]|[258][0369]*[258])(?:[0369]|[147][0369]*[258])*(?:[258]|[147][0369]*[147]))+))\b
    3
    ```
    4
    insanity, as i'd like to call it. although it isn't fizzbuzz per se, it's the best you can get with regex. here's a [regexr link](https://regexr.com/6aaio) to it with sample text.
    5