如何在WhiteSpace中检查字符串是否是另一个字符串的子串?

时间:2014-10-23 05:22:52

标签: string substring whitespace-language

当我看到SBStr1时,我在SPOJ上遇到了问题。我学到了一点WhiteSpace语言,但我只能达到循环 任何人都可以帮助我如何检查字符串是否有另一个字符串作为WhiteSpace中的子字符串?

1 个答案:

答案 0 :(得分:3)

我不打算为你编写Whitespace代码,但这里有一个你可以轻松转换为空白的方法:

24 times:
    read 10 bit number into A
    skip space
    read 5 bit number into B
    skip newline

    if (A>>0)%32 == B or (A>>1)%32 == B or ... or (A>>5)%32:
        print 1
    else:
        print 0
    print newline

您可以通过重复除以2来实现位移。