Skip to main content

Timeline for Find the Wavy Words!

Current License: CC BY-SA 3.0

5 events
when toggle format what by license comment
Jun 17, 2020 at 9:04 history edited CommunityBot
Commonmark migration
Oct 31, 2016 at 14:19 history edited Kevin Cruijssen CC BY-SA 3.0
-14 bytes by changing the output format
Oct 31, 2016 at 12:56 comment added Numberknot Output 1 if wavy raising,output -1 if wavy decreasing,0 if not wavy
Oct 31, 2016 at 12:55 comment added Numberknot int c(char[]s){int t=s[0],f=s.length,a=1,b=1,i;for(i=1;i<f;){if(s[i]-s[i-1]>=0)++a;if(s[i]-s[i++-1]<1)++b;}return a==f?1:b==f?-1:0;}(132 bytes)
Oct 31, 2016 at 10:31 history answered Kevin Cruijssen CC BY-SA 3.0