Dashboard Temp Share Shortlinks Frames API

HTMLify

are_anagrams.py
Views: 442 | Author: abh
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
TESTCCASES = [
    {
        "positional": ("string", "string",),
        "keyword": {},
        "return": True,
        "msg": "",
    },
    {
        "positional": ("same", "diffrent",),
        "keyword": {},
        "return": False,
        "msg": "",
    },
    {
        "positional": ("listen", "silent",),
        "keyword": {},
        "return": True,
        "msg": "",
    },
    {
        "positional": ("qwerty", "qwwwerty",),
        "keyword": {},
        "return": False,
        "msg": "",
    },
    {
        "positional": ("", "",),
        "keyword": {},
        "return": True,
        "msg": "empty strings",
    },
    {
        "positional": ("debit card", "bad credit",),
        "keyword": {},
        "return": True,
        "msg": "multiple words",
    },
]