Post History
Raku (also Perl polyglot), 5 unique, 13 bytes !()/(!()+!()) () or empty list coerces to its length which is 0 in math operations and !0 is True which coerces to 1
Answer
#6: Post edited
# Raku (also Perl polyglot), 4 unique, 13 bytes- ```
- !()/(!()+!())
- ```
- () or empty list coerces to its length which is 0 in math operations and !0 is True which coerces to 1
- # Raku (also Perl polyglot), 5 unique, 13 bytes
- ```
- !()/(!()+!())
- ```
- () or empty list coerces to its length which is 0 in math operations and !0 is True which coerces to 1
#5: Post edited
# Raku (also Perl polyglot), 4 unique, 22 bytes- ```
()**()/(()**()+()**())- ```
() or empty list coerces to its length which is 0 in math operations and 0 ** 0 is 1
- # Raku (also Perl polyglot), 4 unique, 13 bytes
- ```
- !()/(!()+!())
- ```
- () or empty list coerces to its length which is 0 in math operations and !0 is True which coerces to 1
#4: Post edited
# Raku, 4 unique, 22 bytes- ```
- ()**()/(()**()+()**())
- ```
- () or empty list coerces to its length which is 0 in math operations and 0 ** 0 is 1
- # Raku (also Perl polyglot), 4 unique, 22 bytes
- ```
- ()**()/(()**()+()**())
- ```
- () or empty list coerces to its length which is 0 in math operations and 0 ** 0 is 1
#3: Post edited
# Raku, 6 unique, 22 bytes- ```
[]**[]/([]**[]+[]**[])- ```
[] coerces to 0 and 0 ** 0 is 1
- # Raku, 4 unique, 22 bytes
- ```
- ()**()/(()**()+()**())
- ```
- () or empty list coerces to its length which is 0 in math operations and 0 ** 0 is 1