29
\$\begingroup\$

There are two forms of nouns, singular and plural. The conversion between these two is quite easy.

  1. Normally, you end it with s. ex. car => cars.

  2. If it ends with s,x,z,ch or sh, end it with es. ex. bus=>buses.

  3. If it ends with y with a consonant just before it, change the y to ies. ex. penny => pennies.

  4. If it ends with f or fe, change it to ves. ex. knife => knives.

  5. If it ends with o with a consonant just before it, change it to oes. ex.potato => potatoes.


Task

You will be given a singular noun. You have to convert the given noun to plural and output it.


Rules

  • You will not be given irregular nouns, like mouse and moose.

  • You will not be given exceptions, such as safe (safes; violating #4), piano (pianos; violating #5) and o (oes, violating #5).

  • You will not be given words which have two or more possible plural forms, such as mosquito (mosquitos or mosquitoes) and roof (roofs or rooves).

  • You will not be given uncountable nouns.

  • y doesn't count as a vowel.


Examples

car => cars
bus => buses
potato => potatoes
knife => knives
penny => pennies
exception => exceptions
wolf => wolves
eye => eyes
decoy => decoys
radio => radios
\$\endgroup\$
10
  • \$\begingroup\$ Edited question for clarity. Feel free to rollback. \$\endgroup\$ Commented Mar 5, 2017 at 17:03
  • 12
    \$\begingroup\$ Ahh, English - a huge pile of arbitrary rules and special cases :) \$\endgroup\$ Commented Mar 5, 2017 at 23:16
  • 42
    \$\begingroup\$ @Challenger5 Yep, but you can understand it through tough thorough thoughts, though. ;) \$\endgroup\$ Commented Mar 5, 2017 at 23:20
  • 3
    \$\begingroup\$ @Challenger5 If you compare English to Dutch there are barely any rules at all.. Dutch has rules and special cases, and special cases contradicting those special cases, and in some cases even special cases that contradict those special cases that those special cases contradict. ;) \$\endgroup\$ Commented Mar 6, 2017 at 8:13
  • 1
    \$\begingroup\$ @KevinCruijssen you guys should see French... \$\endgroup\$
    – Quentin
    Commented Mar 7, 2017 at 12:32

20 Answers 20

49
\$\begingroup\$

Mathematica, 9 bytes

Pluralize

Yes, there is a built-in for this!

Sample output

Pluralize["car"]

cars

Pluralize /@ {"bus", "potato", "knife", "penny", "exception", "wolf", "eye"}

{"buses", "potatoes", "knives", "pennies", "exceptions", "wolves", "eyes"}

\$\endgroup\$
3
  • 7
    \$\begingroup\$ Waaaaaat! Is there something Mathematica has no built-in for? \$\endgroup\$
    – KeyWeeUsr
    Commented Mar 6, 2017 at 20:28
  • 2
    \$\begingroup\$ D: Builtins have attacked this challenge too \$\endgroup\$ Commented Mar 15, 2017 at 13:18
  • 1
    \$\begingroup\$ @KeyWeeUsr codegolf.stackexchange.com/a/71680/56033 \$\endgroup\$ Commented Aug 25, 2017 at 23:42
19
\$\begingroup\$

Retina, 57 53 56 55 58 57 bytes

Thanks to MartinEnder for some golfing suggestions

Thanks to BusinessCat for golfing 1 byte

([^aeiou]o|sh?|ch|z|x)$
$1e
fe?$
ve
([^aeiou])y$
$1ie
$
s

Try it online!

Explanation (outdated)

([^aeiou])y$
$1ie

Changes {consonant}y to {consonant}ie

([^aeiou]o|[fxzs]|[sc]h)$
$&e

Appends an e to when the word ends with an {consonant}o, f,x,z,s,sh or ch.

fe$
ve

Changes an ending fe to ve

$
s

Finally append an s to the word.

Edits

  • Added bytes because I forgot the second rule
  • Added bytes to update with eye as an example
\$\endgroup\$
4
  • 1
    \$\begingroup\$ Sorry if this is a stupid question, I've not used Retina. Why are the round brackets needed in the first line? \$\endgroup\$ Commented Mar 6, 2017 at 7:21
  • \$\begingroup\$ Never mind, I think I've answered my own question. It's because of the lookback reference in the following line. \$\endgroup\$ Commented Mar 6, 2017 at 8:45
  • \$\begingroup\$ Yeah, it's because we want to capture the character before the y using $1 \$\endgroup\$
    – user41805
    Commented Mar 6, 2017 at 11:00
  • \$\begingroup\$ I think I got it in 57 bytes: Try it online \$\endgroup\$ Commented Mar 6, 2017 at 15:56
16
\$\begingroup\$

JavaScript (ES6),  109  97 bytes

s=>s[R='replace'](/([^aeiou])y$/,'$1ie')[R](/fe?$/,'ve')[R](/([^aeiou]o|[sxz]|[cs]h)$/,'$1e')+'s'

Try it online!

\$\endgroup\$
4
  • \$\begingroup\$ Why do you have a () in front of fe? \$\endgroup\$ Commented Mar 5, 2017 at 19:05
  • 1
    \$\begingroup\$ @KodosJohnson All replace() iterations include a reference to the first matching group (with $1). That's why I need an empty matching group here. \$\endgroup\$
    – Arnauld
    Commented Mar 5, 2017 at 19:11
  • \$\begingroup\$ Have you tried (?<![aeiou])y? \$\endgroup\$
    – Titus
    Commented Mar 6, 2017 at 9:25
  • \$\begingroup\$ @Titus Unfortunately, JS doesn't implement lookbehind assertions. \$\endgroup\$
    – Arnauld
    Commented Mar 6, 2017 at 11:45
11
\$\begingroup\$

Batch, 325 bytes

@set/ps=
@for %%v in (a e i o u)do @(
for %%e in (o y)do @if %s:~-2%==%%v%%e goto s
if %s:~-2%==%%vf set s=%s:~,-1%ve&goto s
if %s:~-3%==%%vfe set s=%s:~,-2%ve&goto s
)
@if %s:~-1%==y set s=%s:~,-1%ie
@for %%e in (o s x z)do @if %s:~-1%==%%e set s=%s%e
@for %%e in (c s)do @if %s:~-2%==%%eh set s=%s%e
:s
@echo %s%s
\$\endgroup\$
2
  • \$\begingroup\$ What about @echo off at the beginning rather than @ everywhere? Also, @set/ps= seems a little bit rusty from a phone. Won't the s variable accept the slicing values anyway? \$\endgroup\$
    – KeyWeeUsr
    Commented Mar 9, 2017 at 7:44
  • \$\begingroup\$ @KeyWeeUsr @echo off is already 9 bytes without the newline, so it doesn't save me anything. Also, @set/ps= is needed to input the value in the first place. \$\endgroup\$
    – Neil
    Commented Mar 9, 2017 at 8:46
7
\$\begingroup\$

Haskell, 216 207 205 bytes

Thanks to @Lynn, @user1472751 and @Laikoni for the help!

import Data.List
(!)s=or.map(\x->x`isSuffixOf`s)
c=['b'..'z']\\"eiou"
p s|s!(words"s x z ch sh"++map(:"o")c)=s++"es"|s!map(:"y")c=init s++"ies"|s!["f"]=init s++"ves"|s!["fe"]=(init.init)s++"ves"|0<1=s++"s"

Readable

import Data.List;

endsWithOneOf :: String -> [String] -> Bool
endsWithOneOf str ends = (or . map (\end -> end `isSuffixOf` str)) ends 

consonants :: [Char]
consonants = ['a'..'z'] \\ "aeiou"

pluralize :: String -> String
pluralize str
    | str `endsWithOneOf` (words "s x z ch sh" ++ (map (:"o") consonants)) = str ++ "es"
    | str `endsWithOneOf` (map (:"y") consonants) = init str ++ "ies"
    | str `endsWithOneOf` ["f"] = init str ++ "ves"
    | str `endsWithOneOf` ["fe"] = (init.init) str ++ "ves"
    | otherwise = str ++ "s"

Explanation

import Data.List for the function isSuffixOf. endsWithOneOf ( in the golfed version) returns whether one of the list elements is an ending of the string. consonants(c) is just a list of all consonants.

Finally, pluralize(p) checks for the endings and returns the proper pluralization.

Example:

p "potato" == "potatoes"
\$\endgroup\$
4
  • 1
    \$\begingroup\$ Nice solution! This is 216 characters, but is multiple bytes long, making your solution 226 bytes. (Code golf challenges are explicitly scored in bytes, because counting characters lets you cheat sometimes.) You can just rename it to !, though! Also, words"s x z ch sh" saves 5 bytes. Removing parens around (map(:"o")c)) and (map(:"y")c)) saves 4 more. \$\endgroup\$
    – lynn
    Commented Mar 6, 2017 at 9:58
  • \$\begingroup\$ Thanks for the help, @Lynn! I implemented your suggestions. \$\endgroup\$
    – Eisfunke
    Commented Mar 6, 2017 at 14:56
  • 2
    \$\begingroup\$ You can save one byte by using c=['b'..'z']\\"eiou" since 'a' is always removed. \$\endgroup\$
    – colossus16
    Commented Mar 6, 2017 at 15:59
  • 1
    \$\begingroup\$ 0<1 is one byte shorter than True. Also newlines are the same byte count as ; but make the golfed code a bit better readable. \$\endgroup\$
    – Laikoni
    Commented Mar 7, 2017 at 19:13
5
\$\begingroup\$

Perl, 66 + 2 (-pl flag) = 68 bytes

$_.=/(ch|sh?|x|z|[^aeiou]o)$/+s/([^aeiou])y$/$1i/+s/fe?$/v/?es:"s"

Using:

perl -ple '$_.=/(ch|sh?|x|z|[^aeiou]o)$/+s/([^aeiou])y$/$1i/+s/fe?$/v/?es:"s"' <<< car

Try it on Ideone.

\$\endgroup\$
5
\$\begingroup\$

Röda, 80 bytes

f&s{s~="([^aeiou])y$","$1ie","([sxz]|[cs]h|[^aeiuo]o)$","$1e","fe?$","ve"s.="s"}

The function modifies its argument. Usage: main word { f word; print word } Here's a version that uses a return value (83 bytes):

f s{s~="([^aeiou])y$","$1ie","([sxz]|[cs]h|[^aeiuo]o)$","$1e","fe?$","ve";[s.."s"]}

And below is a function that reads infinitely many values from the input stream and pushes plural forms to the output stream (87 83 bytes):

{replace"([^aeiou])y$","$1ie","([sxz]|[cs]h|[^aeiuo]o)$","$1e","fe?$","ve","$","s"}

It's an anonymous function, as that is shorter than creating a named function.

\$\endgroup\$
2
  • \$\begingroup\$ How do you get to display the result of the first function (the one starting with f&s)? Simply f("word") doesn't seem to display anything \$\endgroup\$
    – user41805
    Commented Mar 5, 2017 at 19:02
  • \$\begingroup\$ @KritixiLithos The parameter is a reference, so the argument must be a variable. \$\endgroup\$
    – fergusq
    Commented Mar 5, 2017 at 19:04
5
\$\begingroup\$

PHP, 103 100 bytes

<?=preg_replace(['/([^aeiou]o|sh?|x|z|ch)$/','/(?<![aeiou])y$/','/fe?$/'],['\1e',ie,ve],$argv[1]).s;

Try it online!

The preg_replace function takes in an array of patterns and replacements.

  • Saved 2 bytes thanks to Titus.
  • Saved 1 byte thanks to Dewi Morgan.
\$\endgroup\$
3
  • 2
    \$\begingroup\$ I think You can save one byte with -R and $argn. And using an assertion with y saves two: (?<![aeiou])y$ allows ie as replacement: no \1, no quotes. \$\endgroup\$
    – Titus
    Commented Mar 6, 2017 at 9:17
  • 1
    \$\begingroup\$ Another byte from ([^aeiou]o|sh?|x|z|ch)$ \$\endgroup\$ Commented Mar 6, 2017 at 17:54
  • \$\begingroup\$ @Titus Actually it looks like there is a 1 byte penalty for using -R (but not -r) so that doesn't change the byte count, unfortunately. But the lookbehind suggestion works great. Thanks. \$\endgroup\$ Commented Mar 6, 2017 at 19:32
4
\$\begingroup\$

Python 3, 271 239 199 bytes

Thanks to @ovs for reducing it by 72 bytes!

lambda s,v="aeiou":(s[-2:]=="fe"and s[:-2]+"ve"or s[:-1]+((s[-1]=="y"and s[-2]not in v)*"ie"or s[-1]=="f"and"ve"or s[-1]+((s[-1]in"sxz"or s[-2:]in["ch","sh"])+(s[-1]=="o"and s[-2]not in v))*"e"))+"s"

Try it online!

\$\endgroup\$
5
  • 1
    \$\begingroup\$ You can remove some unnecessary whitespaces and combine the first and last elif. The single character lists can be replaced by strings. Switching to python saves additional 3 bytes. tio \$\endgroup\$
    – ovs
    Commented Mar 6, 2017 at 6:37
  • \$\begingroup\$ @ovs Done, thanks! I didn't combine the elifs however, because that means potato becomes potaties. \$\endgroup\$ Commented Mar 6, 2017 at 6:47
  • 1
    \$\begingroup\$ I looked in the wrong line ;). You can combine the if with the last elif. To save some more bytes replace the last line with print(s+"s") and remove the else case as well every s you are appending to the word. Tio \$\endgroup\$
    – ovs
    Commented Mar 6, 2017 at 7:06
  • 1
    \$\begingroup\$ When you replace your if/elif logic with and/* and or/+ and make an unnamed lambda function you can get it under 200 bytes (I swapped the cases a little bit) \$\endgroup\$
    – ovs
    Commented Mar 6, 2017 at 7:35
  • \$\begingroup\$ @ovs Ooh, that print(s+"s") is clever. All changed; you pretty much rewrote the whole thing lol. Thanks! (I didn't even know you could do True and "string" like that) \$\endgroup\$ Commented Mar 6, 2017 at 7:51
4
\$\begingroup\$

Python 3, 131 125 118 121 bytes

Thanks to The Thonnu for -6 bytes!
Golfed 7 bytes!
Fixed an issue for +3 bytes!

lambda x:S("([sc]h?|x|z)$","\\1e",S(V+"y$","ie",S("fe?$","ve",S(V+"o$","oe",x))))+"s"
import re;S,V=re.sub,"(?<![aeiou])"

Try it online!

My first submission on here! Let me know if I did anything wrong.

\$\endgroup\$
6
  • 1
    \$\begingroup\$ Hi there, welcome to code golf! Very impressive first answer! \$\endgroup\$
    – lyxal
    Commented Apr 5, 2023 at 11:05
  • 1
    \$\begingroup\$ Welcome to Code Golf, and amazing first answer! You can save 5 bytes by assigning re.sub to a variable: Try it online! \$\endgroup\$
    – The Thonnu
    Commented Apr 5, 2023 at 11:05
  • 1
    \$\begingroup\$ And you can save another one by assigning the regex for a consonant to a variable: Try it online! \$\endgroup\$
    – The Thonnu
    Commented Apr 5, 2023 at 11:10
  • 1
    \$\begingroup\$ @The Thonnu Thanks a lot! \$\endgroup\$ Commented Apr 5, 2023 at 11:19
  • \$\begingroup\$ @lyxal Thank you! \$\endgroup\$ Commented Apr 5, 2023 at 11:19
3
\$\begingroup\$

sed, 70 79 bytes

69 78 + 1 for -E (BSD)/-r (GNU) flag

s/([^aeiou])y$/\1ie/
s/([^aeiou]o|[fxzs]|[sc]h)$/&e/
s/fe/ve/
s/$/s/

Direct port of the retina answer.

\$\endgroup\$
2
\$\begingroup\$

Pip, 63 61 bytes

Y`[^aeiou]`OaR[C`sh?|x|z|ch`Cy.'y`fe?`y.'o].'$[_B.'i'v_].'e's

So close to catching Retina! But it's probably not going to happen. :(

Try it online!

Explanation

Basic strategy: Replace performs several replacements one after the other when given lists of patterns and replacements. We want to make the following replacements:

  • (sh?|x|z|ch)$ -> add an e
  • [^aeiou]y -> change the y to i and add an e
  • fe? -> change to v and add an e
  • [^aeiou]o -> add an e

Then we want to tack on an s regardless.

Tricks:

  • The C operator, given a regex, wraps it in a capturing group; C`xyz` is one byte shorter than `(xyz)`.
  • A list of regexes or replacements that all end with the same character can be created by concatenating the character to the list instead of including it in all the items. Concatenating a Scalar (string) to a Pattern (regex/replacement) coerces to a Pattern.
  • Instead of concatenating the s (and having to deal with the precedence ordering of R and .), we can simply Output the main part of the word and then print the s separately.

Spaced and commented code:

                  a is 1st cmdline input (implicit)
Y`[^aeiou]`       Yank the consonant regex into the y variable
O a R             Output (without newline): a, with the following replacements:
 [                List of regexes to replace:
  C `sh?|x|z|ch`    (sh?|x|z|ch)
  Cy . 'y           ([^aeiou])y
  `fe?`             fe?
  y . 'o            [^aeiou]o
 ] . '$           End of list; concatenate $ to each item
 [                List of replacements:
  _                 Identity function (replace with whole match)
  B                 B is short for {b}, a function returning its second argument; as a
                    callback function for regex replacement, the second argument is
                    the value of capturing group 1 (the consonant before y)
    . 'i            To that, concatenate i
  'v                Scalar literal v
  _                 Identity function
 ] . 'e           End of list; concatenate e to each item
's                Return Scalar literal s, which is autoprinted
\$\endgroup\$
2
\$\begingroup\$

C#, 73 163 bytes:

Func<string,string>p=System.Data.Entity.Design.PluralizationServices.PluralizationService.CreateService(System.Globalization.CultureInfo.CurrentCulture).Pluralize

Yes, another language with it built-in (although you need to add a reference to System.Data.Entity.Design.dll)

To use:

var words = new[] { "car", "bus", "potato", "knife", "penny", "exception", "wolf", "eye", "decoy", "radio" };
foreach (var word in words)
{
    var plural = p(word);
    Console.Out.WriteLine($"{word} => {plural}");
}

Output:

car => cars
bus => buses
potato => potatoes
knife => knives
penny => pennies
exception => exceptions
wolf => wolves
eye => eyes
decoy => decoys
radio => radios
\$\endgroup\$
5
  • \$\begingroup\$ Welcome to the site. How do I run this code? \$\endgroup\$
    – Wheat Wizard
    Commented Mar 6, 2017 at 16:06
  • \$\begingroup\$ @WheatWizard updated. Should I have included more detail (using statements etc) in the byte count? \$\endgroup\$
    – RoadieRich
    Commented Mar 6, 2017 at 18:28
  • \$\begingroup\$ Interesting bit of trivia, the reverse of this (Singularize) fails quite a few simple test cases. For example, it's convinced the singular of "courses" is "cours". \$\endgroup\$ Commented Mar 6, 2017 at 21:42
  • \$\begingroup\$ I think the namespaces needs to be included in this one's byte count, especially given that it's not one of the 'normal' ones. But I think you also need to at least wrap this in a lambda, passing the argument to the method. As is this is just a method group \$\endgroup\$ Commented Mar 7, 2017 at 0:34
  • \$\begingroup\$ @pinkfloydx33 better now? \$\endgroup\$
    – RoadieRich
    Commented Mar 7, 2017 at 16:18
2
\$\begingroup\$

Python 199 187 176 Bytes

lambda s:s+'\bve'*(s[-1]=='f')+'\b\bve'*(s[-2:]=='fe')+'e'*(s[-1]in'sxz'or s[-2:]in('ch','sh')or s[-1]=='o'and s[-2]not in'aiueo')+'\bie'*(s[-1]=='y'and s[-2]not in'aiueo')+'s'
\$\endgroup\$
2
\$\begingroup\$

Rails runner, 18 bytes

$><<gets.pluralize

Example:

$ echo knife | rails r filename.rb
knives
\$\endgroup\$
1
  • \$\begingroup\$ Now that's an esoteric language. \$\endgroup\$
    – Ven
    Commented Mar 9, 2017 at 9:24
1
\$\begingroup\$

Python, 296 bytes

z = input()
if z[-1]in['s','x','z','ch','sh']:print(z+'es')
elif z[-1]=='y'and z[-2]not in['a','e','i','o','u']:print(z[:-1]+'ies')
elif z[-2:]=='fe':print(z[:-2]+'ves')
elif z[-1]=='f':print(z[:-1]+'ves')
elif z[-1]=='o'and z[-2]not in['a','e','i','o','u']:print(z[:-1]+'oes')
else:print(z+'s')
\$\endgroup\$
1
\$\begingroup\$

Lexurgy, 102 bytes

Class v {a,e,i,o,u}
p:
*=>es/{s,x,z,ch,zh,!@v o} _ $
y=>ies/!@v _ $
f e?=>ves/_ $
Else:
*=>s/_ $

Ungolfed explanation:

# define vowels
Class vowel {a,e,i,o,u}

plural:
*=>es/{s,x,z,ch,zh,!@vowel o} _ $ # 2,5
y=>ies/!@vowel _ $                # 3
{f,fe}=>ves/_ $                   # 4
Else:                             # Run the rules below if the above rules don't apply
*=>s/_ $                          # 1
\$\endgroup\$
0
\$\begingroup\$

Java 7, 408 bytes

Golfed:

boolean b="bcdfghjklmnpqrstvwxyzs".contains(String.valueOf(s.charAt(s.length()-2))); String x=s.substring(0,s.length()-1);if(s.endsWith("s")||s.endsWith("x")||s.endsWith("z")||s.endsWith("ch")||s.endsWith("sh"))return s+"es";if(s.endsWith("y")&&b)return x+"ies";if(s.endsWith("f")) return x+"ves";if(s.endsWith("fe"))return s.substring(0,s.length()-2)+"ves";if(s.endsWith("o")&&b)return s+"es";return s+="s";

Basically testing what the end of the String is and adding / replacing letters depending on what case it is. The boolean and String at the beginning are just for removing repetition in the test cases and making the code smaller.

Readable version:

public static String pluralize(String s){

// Consonant at the 2nd last position?
boolean b = "bcdfghjklmnpqrstvwxyzs".contains(String.valueOf(s.charAt(s.length()-2))); 

// Substring for cases where last letter needs to be replaced
String x = s.substring(0,s.length()-1);

if(s.endsWith("s") || s.endsWith("x") || s.endsWith("z") || s.endsWith("ch") || s.endsWith("sh"))
    return s + "es";
if(s.endsWith("y") && b)
    return x + "ies";
if(s.endsWith("f")) 
    return x + "ves";
if(s.endsWith("fe"))
    return s.substring(0,s.length()-2) + "ves";
if(s.endsWith("o") && b)
    return s + "es";

return s += "s";
}
\$\endgroup\$
1
  • 7
    \$\begingroup\$ You can't use a snippet. \$\endgroup\$
    – Okx
    Commented Mar 6, 2017 at 10:10
0
\$\begingroup\$

Direct port of Retina:

Ruby, 111 bytes

'sub(/([^aeiou])y/){"#{$1}ie"};sub(/(.*)([^aeiou]o|[fxzs]|[sc]h)$/){"#{$1}#{$2}e"};sub(/fe/,"ve");sub(/$/,"s")'

Try it online!

Invoke via ruby -lpe and supply a file as input.txt for first CLI argument.

\$\endgroup\$
1
  • \$\begingroup\$ Can probably be more 'golfed'. Btw.: Can one add files to TIO? \$\endgroup\$
    – stephanmg
    Commented Dec 3, 2019 at 13:31
0
\$\begingroup\$

C, 321 bytes

#define E else if(
#define C unsigned char
C*p(C*b){static C r[999],i,w,n,m;for(n=w=i=0;r[i]=b[i];n=w,w=b[i++]);m=!strchr("aeiou",n);if(strchr("sxz",w)||(w=='h'&&strchr("cs",n))||(w=='o'&&m))r[i++]='e';E'y'==w&&m)r[i-1]='i',r[i++]='e';E'f'==w)r[i-1]='v',r[i++]='e';E'f'==n&&w=='e')r[i-2]='v';r[i++]='s';r[i]=0;return r;}

test:

C*mx[]={"car","bus","potato","knife","penny","exception","wolf","eye","decoy","radio",0};

main()
{unsigned i;
 for(i=0;mx[i];++i)
    printf("[%s] [%s]\n", mx[i], p(mx[i]));
 return 0;
}

results:

[car] [cars]
[bus] [buses]
[potato] [potatoes]
[knife] [knives]
[penny] [pennies]
[exception] [exceptions]
[wolf] [wolves]
[eye] [eyes]
[decoy] [decoys]
[radio] [radios]
[radio] [radios]
\$\endgroup\$
3
  • \$\begingroup\$ It should be wolves not wolfves. \$\endgroup\$
    – mbomb007
    Commented Apr 6, 2017 at 18:07
  • \$\begingroup\$ @ceilingcat what about "static C r[256],/*Z="aeiou",i=0,w,n;" in the place of "static C r[256];C/*Z="aeiou",i=0,w,n;"? \$\endgroup\$
    – user58988
    Commented Dec 4, 2019 at 11:08
  • 1
    \$\begingroup\$ 260 bytes \$\endgroup\$
    – ceilingcat
    Commented Dec 5, 2019 at 9:54

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.