| Bytes | Lang | Time | Link |
|---|---|---|---|
| 040 | Perl 5 MListUtil=sum pF/R/ | 190903T054358Z | Xcali |
| 036 | Wolfram Language Mathematica | 190902T205724Z | att |
| nan | x8664 26 Bytes | 190911T054928Z | me' |
| 033 | Haskell | 190911T053854Z | Jo King |
| 036 | Haskell | 190911T042630Z | xnor |
| 091 | C | 190903T040102Z | girobuz |
| 073 | Befunge98 PyFunge | 190905T104536Z | david |
| 057 | C clang | 190904T084029Z | AZTECCO |
| 015 | Retina | 190902T213917Z | mbomb007 |
| 006 | Stax | 190902T224607Z | Oliver |
| 027 | C# Visual C# Interactive Compiler | 190902T232037Z | Gymhgy |
| 765 | Stax | 190903T164221Z | Joshua |
| 007 | Pyth | 190903T132434Z | ar4093 |
| 032 | Java 11 | 190903T075556Z | Kevin Cr |
| 005 | Jelly | 190902T202144Z | Erik the |
| 046 | Red | 190903T073424Z | Galen Iv |
| 033 | JavaScript ES6 | 190902T204716Z | Arnauld |
| 007 | Snails | 190903T050852Z | feersum |
| 029 | Python 3 | 190902T232511Z | Joel |
| 054 | Haskell | 190903T004247Z | Wheat Wi |
| 005 | Japt | 190902T234557Z | Gymhgy |
| 005 | 05AB1E | 190902T232330Z | Grimmy |
| 009 | Retina | 190902T224858Z | Neil |
| 016 | Perl 6 | 190902T222447Z | Jo King |
| 006 | Japt | 190902T223333Z | Shaggy |
| 006 | Japt | 190902T222533Z | Oliver |
| 059 | Python 2 | 190902T213403Z | Chas Bro |
| 006 | Jelly | 190902T211933Z | Nick Ken |
Wolfram Language (Mathematica), 43 38 36 bytes
Subsequences/*Count[{0,1..}|{1..,0}]
Port of Neil's Retina solution. Uses 1 for spaces and 0 for rooks.
x86-64 - 26 Bytes
Input is an array of up to 32 bits and an integer representing number of squares, 1 representing rook, 0 representing empty.
C4 E2 69 F7 C1 shlx eax,ecx,edx
0B C1 or eax,ecx
F3 0F BC C8 tzcnt ecx,eax
D3 E8 shr eax,cl
F3 0F BD C8 lzcnt ecx,eax
F7 D0 not eax
F3 0F B8 C0 popcnt eax,eax
2B C1 sub eax,ecx
C3 ret
Copies the bits so that it is added to the left of it and removes the trailing zero bits. Then gets number of leading zero bits and subtracts it from the total number of zero bits.
x86-64 Machine Code - 22 Bytes - regular length chess ranks only.
Input is a 32-bit integer with the least significant byte made of 8 bits representing the rooks. 1 is a rook, 0 is empty.
8A E9 mov ch,cl
91 xchg eax,ecx
F3 0F BC C8 tzcnt ecx,eax
D3 E8 shr eax,cl
F3 0F BD C8 lzcnt ecx,eax
F7 D0 not eax
F3 0F B8 C0 popcnt eax,eax
2B C1 sub eax,ecx
C3 ret
Copies the bits into the next significant byte and removes the trailing zero bits. Then gets number of leading zero bits and subtracts it from the total number of zero bits.
Haskell, 33 bytes
sum.(t.reverse<>t)
t=snd.span(>0)
Anonymous function that takes input as a list of 1s (spaces) and 0s (rooks). This trims spaces from the start and the end of the list, then concatenates the two versions of the list and sums them.
This uses GHC 8.4.1 or later to have access to the <> operator without importing it.
Haskell, 36 bytes
f s=sum$snd.span(>0)=<<[s,reverse s]
Uses 1 for empty space, 0 for rook. Counts the number of 1's not in an initial block of ones, and adds that to the result for the reversed string.
C, 183 156 151 137 96 91 bytes
Thanks to ceilingcat for 91 bytes.
c,e;char*z,b[9];main(d){for(gets(z=b);e=*z>81?c-=e*~!d,d=0:e+1,*++z;);printf("%i",d?:c+e);}
R is a rook, everything else is a space.
Befunge-98 (PyFunge), 73 bytes
#;ep10fp#;>#v~:'.-#v_$1+0k
v0+ge0*gf0$_v#!-R':<
>ep20fp v >0fg1-*0eg+.@
C (clang), 57 bytes
i,r,o;g(*n,z){for(o=r=i=0;z--;i=-~i*!*n++)o+=*n?r=1,i:r;}
- Saved 1 thanks to @ceilingcat
I realized it didn't worked for empty lists.. Now it works! Plus saved some bytes!
1=rook. 0=space.
for(.. i+=n++?-i:1)// counts spaces or reset extra moves => i=-~i!*n++ ( @ceilingcat )
o+=*n?r=1,i:r; // adds to output -i-(extra moves) when a rook is met plus sets -r-(rook met), -i- will be cleared in for increment sentence.
adds -r- for every space(rook met guaranteed )
Retina, 23 15 bytes
Double the number of spaces between rooks, grep lines with at least one rook, then count the number of spaces.
R.+R
$0$0
G`R
Though the program uses spaces instead of periods, I added prefix code so that the test cases provided may be easily pasted in and used.
I was hoping I could use overlapping matches with (?<=R.*) | (?=.*R), but overlaps aren't quite that aggressive. It would need to count all possible ways a match could be obtained in order to return the correct result with that method.
C# (Visual C# Interactive Compiler), 27 bytes
x=>(x+x).Trim().Sum(d=>d)/9
Saved a byte thanks to @someone
Pyth, 7 bytes
/r6*2Qd
Takes a string of R for rooks, (space) for empty spaces
/ d # Count spaces in
r6 # Strip spaces from
*2Q # 2 * input() (= concatenation)
Java 11, 35 32 bytes
s->(s+s).strip().chars().sum()/9
Port of @Joel's Python 3 answer.
-3 bytes thanks to @Joel as well.
Uses NULL-bytes (\0) for Rooks and tabs (\t) for spaces.
I tried using s->(s+s).trim().chars().sum()/9 at first as 31-byter, but this doesn't work because the String#trim builtin not only removes leading and trailing spaces/tabs/newlines, but also all other bytes that are smaller than or equal to U+0020 (unicode 32; a space), so it'll remove the NULL-bytes as well..
Thanks to Joel for recommending me the new Java 11+ String#strip builtin (which I forgot they added) as alternative. This one also removes trailing/leading portions, but in this case only whitespaces, so the NULL-bytes are retained.
Explanation:
s-> // Method with String as parameter & integer return-type
(s+s) // Concatenate the input to itself
.strip() // Then trim all leading and trailing tabs
.chars().sum() // Sum the unicode values of the remaining characters
/9 // And divide it by 9 to get the amount of remaining tabs
Red, 46 bytes
func[s][length? next split trim append s s sp]
Just a Red port of Arnauld's JavaScript/Python solutions. Takes a space as an empty square.
JavaScript (ES6), 38 33 bytes
Saved 5 bytes thanks to @JoKing
Takes input as a string. Expects a space for an empty square and any other character for a rook.
s=>(s+s).trim().split` `.length-1
Commented
s => // s = input, e.g. " R RRR "
(s + s) // double -> " R RRR R RRR "
.trim() // remove leading and trailing spaces -> "R RRR R RRR"
.split` ` // split on spaces -> [ 'R', '', 'RRR', '', 'R', '', 'RRR' ]
.length - 1 // return the length - 1 -> 6
Python 2, 40 33 bytes
Saved 7 bytes thanks to @Grimy
lambda s:(s+s).strip().count(' ')
Python 3, 30 29 bytes
lambda s:sum((s+s).strip())/9
-1 byte thanks to @JoKing
The function takes a Python byte string as input. Each empty space is encoded as a tab and each rook is encoded as a byte b'\x00' having value 0.
The computation is equivalent to lambda s:(s+s).strip().count(b'\t') while having a lower byte count.
Japt, 5 bytes
²x èS
²x èS Implicit input string of U
² U + U
x Remove trailing and leading whitespace
èS Number of spaces
05AB1E, 5 bytes
«ðÚð¢
« # concatenate the input with itself
ðÚ # remove leading and trailing spaces
ð¢ # count spaces
Retina, 14 9 bytes
w`_+R|R_+
Try it online! Link includes test cases. Uses _ for empty space as it's the most pleasant non-regex character. Works by counting the number of substrings that correspond to a valid Rook move. A substring is a valid Rook move if it contains at least one _ plus a single R at either the beginning or the end.
Perl 6, 16 bytes
{+m:ex/s+R|Rs+/}
A regex that matches all exhaustive instances of rooks followed by spaces, or spaces followed by a rook and returns the number of matches.
Jelly, 6 bytes
t1;ḟẠS
A monadic link taking a list of 0 for rook and 1 for space and returning an integer with the number of moves. The TIO link takes the pasted list of possible boards given in the question, converts to the right format and then outputs the calculated and correct answers.
Explanation
t1 | Trim 1s from end
; | Concatenate to input
ḟẠ | Filter out 1s if all input were 1s, otherwise filter out 0s
S | Sum