Timeline for Is it a Bumpy Word?
Current License: CC BY-SA 3.0
8 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jun 17, 2020 at 9:04 | history | edited | Community Bot |
Commonmark migration
|
|
| Apr 13, 2017 at 12:38 | history | edited | Community Bot |
replaced http://codegolf.stackexchange.com/ with https://codegolf.stackexchange.com/
|
|
| Sep 13, 2016 at 19:26 | comment | added | milk |
@Scepheo I got StackOverflowExceptions with those suggestions, but they work using boolean OR || instead of bitwise OR |. Updated the post, thanks.
|
|
| Sep 13, 2016 at 19:25 | history | edited | milk | CC BY-SA 3.0 |
added 124 characters in body
|
| Sep 13, 2016 at 13:36 | comment | added | Scepheo |
Actually, although I can't test this, manipulating the pointer itself seems even terser: unsafe bool B(char*s)=>1>s[2]|*s<s[1]!=*++s<s[1]&B(s);
|
|
| Sep 13, 2016 at 13:19 | comment | added | Scepheo |
Seems like the last one can do without the ?: operator or parentheses: unsafe bool B(char*s)=>1>s[2]|s[0]<s[1]!=s[1]<s[2]&B(s+1);
|
|
| Sep 13, 2016 at 1:15 | history | edited | milk | CC BY-SA 3.0 |
added 74 characters in body
|
| Sep 13, 2016 at 0:53 | history | answered | milk | CC BY-SA 3.0 |