何がありますか?


17

私たちの最愛の天才からインスピレーションを受けて、そしてそれを記念して、

ジョン・ショールズ、1948-2019

RIP

dfns発明し、実装しました。彼の大作と挑戦の主題です。

興味のある方:最新の完全なdfnsドキュメントJohnのビデオ

仕事

ASCIIソースコードを指定して、次の4つのカテゴリのいずれに属するかを答えます。

  1. ダイアディックドップ

  2. モナドドップ

  3. Dfn

  4. その他

4つの一貫した値を返すことができますが、明確でない場合はマッピングを明記してください。

詳細

ソースコードは常に左中括弧{で始まり、右中括弧で終わると仮定でき}ます。

再帰的にネストされたブレースが発生する可能性がありますが(例{{{}}})、カテゴリ1〜3ではブレースのネストの深さが1未満になること{}{}はないため(「その他」)、すべてのブレースのバランスが取れます({{}「その他」)。

行の次のコンテキストの文字は無視されます。

  1. #(コメント)の右側:significant#ignored

  2. 単一引用符で囲まれた'... '(つまり、文字列で): significant'ignored'significant(これが適用さ#すぎ。'#'significant

  3. 対になっていない引用の右側'(左からの引用のペア):significant'ignored

中括弧レベル1(つまり、ネストされた中括弧を除く):

  • ダイアディックドップスには途切れないフレーズが含まれています ww

  • モナドドップスにはが含まれていませんがww、含まれていますaa

  • DFNS含んどちらwwaa

テストケース

ダイアディックドップス

{ww}
{
    www
}
{
''ww'
}
{aa

ww}
{'#''#'ww?aa}

モナドドップス

{aa}
{aaaa}
{aa{ww}'ww'}
{w#w'
aa'
}
{aaw*w}
{w'\'aa\''}

Dfns

{}
{a a}
{aA}
{
{aa}
}
{w
w''w#
w}
{{
}}
{w\'aa\'}

その他

{}{}
{{}
{}}
{ww}}
{}
{}
{ww}{}
{#}
{'
'}

しゅうまい君 そうでないと思う理由があれば、私に知らせてください。
アダム

1
文字列引用符をエスケープできますか?エスケープする場合は、それらを処理する必要がありますか?(例:{'#\'ww?aa'}->その他?)
ΟurousFeb

1
@Οurいいえ、仕様は前述のとおりです。引用符で囲まれたものはすべて重要ではありません。(実際、APL文字列にはエスケープメカニズムがありません。)ケースを追加します。
アダム

ええと、文字列が含まれないことを想定''できますか?
アウトゴルファーのエリック

@EriktheOutgolfer発生する可能性があります。ケースを追加しますが、あなたが言うように、'abc''def'このチャレンジでは1つまたは2つの文字列として解析されるかどうかは関係ありません。
アダム

回答:


9

JavaScript(ES6)、 145 ... 138  136バイト

0123

s=>[...s].map(c=>s=(n=`
aw}{#'`.indexOf(c))?n>5?i^=2:i?0:n>4?i=1:n>3?d++:n>2?x+=!d--:(o|=n<0|d|s!=c?0:n,c):i=0,o=i=0,x=d=-1)|x|~d?3:2>>o

オンラインでお試しください!

代替バージョン

どうやって?

入力文字列は、文字ごとに解析されます。

文字のコードへの変換

cn

 character | code | triggered operation
-----------+------+---------------------------------------------------------
    \n     |   0  | i = 0
     a     |   1* | o |= n < 0 | d | s != c ? 0 : n
     w     |   2* | o |= n < 0 | d | s != c ? 0 : n
     }     |   3* | x += !d--
     {     |   4* | d++
     #     |   5* | i = 1
     '     |   6  | i ^= 2
   other   |  -1* | same as 'a' or 'w', but always fails because of 'n < 0'

i0

パーサーの状態を記述する変数

解析中に次の変数が使用されます。

  • o

    • ビット0:有効なフレーズaaが見つかりました
    • ビット1:有効なフレーズwwが見つかりました
  • i

    • ビット0:現在、コメント内にあります
    • ビット1:現在文字列内にあります(このビットはコメント内で更新されますが、これは無害です)
  • s

  • d1
  • x011

最終結果

3x0d1012o


6

ゼリー 50 48 46  45 バイト

Ỵµṣ”'m2Kṣ”#Ḣ)KµċⱮƤØ{IF©<-oµ⁾waż¤ẇ€‘Ḅ«5×®¬Ḅ⁼1¤

生成される文字のリストを受け入れるモナドリンク:

5 - Dyadic dop
4 - Monadic dop
3 - Dfn
0 - Other

オンラインでお試しください!または、テストスイートを参照してください。
入力をPythonセットまたは辞書として評価する可能性を回避するためにPythonクォートを使用します

どうやって?

Ỵµṣ”'m2Kṣ”#Ḣ)KµċⱮƤØ{IF©<-oµ⁾waż¤ẇ€‘Ḅ«5×®¬Ḅ⁼1¤ - Link: list of characters
                                              - breaking long Link up...
Ỵµṣ”'m2Kṣ”#Ḣ)K      - Replace any strings or comments with (single) spaces
Ỵ                   - split at newline characters
 µ          )       - monadic chain for each:
  ṣ”'               -   split at apostrophe characters
     m2             -   modulo 2 slice (i.e. every other part starting with the first
                    -   - that is, non-string code. Will remove strings from within comments)
       K            -   join with spaces
        ṣ”#         -   split at octothorp characters
           Ḣ        -   head (i.e. non-comment code)
             K      - join with spaces

µċⱮƤØ{IF©<-oµ       - Replace characters of code at depth > 1 with the integer 1
µ           µ       - monadic chain, call previous result A:
    Ø{              -   literal ['{','}']
   Ƥ                -   for prefixes of A:
  Ɱ                 -     map across right argument with:
 ċ                  -       count
      I             -   deltas (i.e. [count('}') - count('{')] for each prefix)
       F            -   flatten (i.e. count('}') - count('{') for each prefix)
                    -   -- i.e -1*depth of each character of A; closing braces at depth+1
        ©           -   (copy this list of depths to the register for later use)
         <-         -   less than -1? (vectorises)
           o        -   logical OR with A (vectorises, replacing deep code with 1s)

⁾waż¤ẇ€‘Ḅ«5×®¬Ḅ⁼1¤ - Categorise the result, R
    ¤              - nilad followed by link(s) as a nilad:
⁾wa                -   literal ['w', 'a']
   ż               -   zip with itself = [['w','w'],['a','a']]
     ẇ€            - for €ach: is a sublist of R?  i.e. one of: [0,0] [1,0] [0,1] [1,1]
       ‘           - increment (vectorises)                     [1,1] [2,1] [1,2] [2,2]
        Ḅ          - unbinary                                     3     5     4     6
         «5        - minimum with five                            3     5     4     5
                 ¤ - nilad followed by link(s) as a nilad:
            ®      -   recall depths from the register
             ¬     -   logical NOT (vectorises) (0->1, other depths->0)
              Ḅ    -   unbinary
               ⁼1  -   equal one -- i.e. depths ends with a 0 and contains no other zero 
           ×       - multiply

3

クリーン309の 293 284バイト

我々は彼らを呼ぶことにしますので、一度に3人の変数名を使用して逃げることができapl

import StdEnv,Text,Data.List
a=isInfixOf o zip2[2,2]
@ =['\'']
$p#p=join@[foldl((\[a:p]_|p>[]=a++[';':join@(tl p)]=split['#']a!!0)o split@)l l\\l<-mklines p]
#l=[(?a- ?l,p)\\a<-inits p&[p:l]<-tails p]
|{p\\(a,p)<-l|a<2}<>"{}"=0|a['ww']l=1|a['aa']l=2=3
?l=sum[1\\'{'<-l]-sum[1\\'}'<-l]

オンラインでお試しください!

関数$ :: [Char] -> Intといくつかのヘルパーを定義して、マッピングを提供します。

  • 0:その他
  • 1:ダイアディックドップ
  • 2:モナドドップ
  • 3:Dfn

拡張(最初のバージョン)、および3つ以上の変数名:

$ s
    # s // remove strings and comments
        = join [';'] [ // join the second argument with semicolons
            limit ( // take the first repeated element of
                iterate // an infinite list of applications of the first argument
                    (
                        (
                            \(p, q) = p ++ case q of // join the first half with a modified second half
                                ['\'\'': q] = [';': q] // replace two quotes with a semicolon
                                [c, _: q] = [c: q] // drop the character after a quote or hash
                                _ = [] // leave unmatched strings unchanged
                        ) o span // split the string on the first occurrence of
                            \c = c <> '\'' && c <> '#' // a quote or hash
                    ) l // applied to l
                )
            \\ l <- mklines s // for line l in s split at newlines
        ]
    # b // generate a map of nesting levels
        = [
            ( // the pair of
                ?i - ?t, // the nesting level
                c // the character c
            ) 
            \\ i <- inits s // for init i of s
            & // synchronously iterated with 
                [c: t] <- tails s // character c at the start of tail [c:t] of s
        ]
    // determine what the code is
    | {c \\(n, c) <- b | n < 2} // if the string made of characters with nesting level of less than 2
        <> "{}" // is not the same as the paired braces at the beginning and end
        = 0 // return zero
    | m ['ww'] b // if there are two consecutive 'w's at nesting level 2
        = 1 // return 1
    | m ['aa'] b // if there are two consecutive 'a's at nesting level 2
        = 2 // return 2
    = 3 // otherwise return 3

0

Retina 0.8.2、91バイト

m`'.*?('|$)|#.*
¶
s(+`(?!^)\{[^{}]*\}(?!$)
¶
^(?!\{[^{}]*\}$).+
3
^.+ww.+
2
^.+aa.+
1
..+
0

オンラインでお試しください!リンクにはテストスイートが含まれます。説明:

m`'.*?('|$)|#.*
¶

文字列とコメントを削除します。

s(+`(?!^)\{[^{}]*\}(?!$)
¶

一致するブラケットを削除し、最も内側から作業しますが、最初と最後のブラケットは残します。

^(?!\{[^{}]*\}$).+
3

一致する括弧がない場合、これはその他です。

^.+ww.+
2

それ以外の場合wwは、Dyadic Dopです。

^.+aa.+
1

それ以外の場合aa、これはMonadic Dopです。

..+
0

それ以外の場合、これが上で説明されていないものであれば、これはDfnです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.