Skip to main content
deleted 16 characters in body
Source Link
Shaggy
  • 45.4k
  • 4
  • 39
  • 95

Japt , 1513 bytes

Takes input in lowercase

pÊv è`%ßé[^Ãäu]pÊè`%ßé[^Ãäu]

Try it

pÊv è`pÊè`...     :Implicit input of string
p             :Append
 Ê            :  Its length
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)

Japt , 15 bytes

pÊv è`%ßé[^Ãäu]

Try it

pÊv è`...     :Implicit input of string
p             :Append
 Ê            :  Its length
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)

Japt , 13 bytes

Takes input in lowercase

pÊè`%ßé[^Ãäu]

Try it

pÊè`...     :Implicit input of string
p           :Append
 Ê          :  Its length
  è         :Count the occurrences of
   `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
            :Implicit output of result as a boolean (0 is falsey)
deleted 1 character in body
Source Link
Shaggy
  • 45.4k
  • 4
  • 39
  • 95

Japt , 15 bytes

pÔvpÊv è`%ßé[^Ãäu]

Try itTry it

pÔvpÊv è`...     :Implicit input of string
p             :Append
 ÔÊ            :  Its reverselength
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)

Japt , 15 bytes

pÔv è`%ßé[^Ãäu]

Try it

pÔv è`...     :Implicit input of string
p             :Append
 Ô            :  Its reverse
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)

Japt , 15 bytes

pÊv è`%ßé[^Ãäu]

Try it

pÊv è`...     :Implicit input of string
p             :Append
 Ê            :  Its length
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)
added 331 characters in body
Source Link
Shaggy
  • 45.4k
  • 4
  • 39
  • 95

Japt , 1415 bytes

pÔv è`%ßé[^à]è`%ßé[^Ãäu]

Try itTry it

pÔv è`...     :Implicit input of string
p             :Append
 Ô            :  Its reverse
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)

Japt , 14 bytes

pÔv è`%ßé[^à]

Try it

Japt , 15 bytes

pÔv è`%ßé[^Ãäu]

Try it

pÔv è`...     :Implicit input of string
p             :Append
 Ô            :  Its reverse
  v           :Lowercase
    è         :Count the occurrences of
     `...     :  Compressed string "%bill[^ayiou]"=/\bill[^ayiou]/g
              :Implicit output of result as a boolean (0 is falsey)
Source Link
Shaggy
  • 45.4k
  • 4
  • 39
  • 95
Loading