TopCoder SRM612: LeftAndRightHandedDiv2
S
に含まれている "RL"
を個数をカウントする。
public class LeftAndRightHandedDiv2 { public int count(string S) { return S.Zip(S.Skip(1), (c1, c2) => c1 == 'R' && c2 == 'L' ? 1 : 0).Sum(); } }
S
に含まれている "RL"
を個数をカウントする。
public class LeftAndRightHandedDiv2 { public int count(string S) { return S.Zip(S.Skip(1), (c1, c2) => c1 == 'R' && c2 == 'L' ? 1 : 0).Sum(); } }