Ad
Code
Diff
  • def for_what(): return f"зачем ты это делаешь?"
    • def why():return f"w - h - y"
    • def for_what(): return f"зачем ты это делаешь?"
Code
Diff
  • def дима_лох(): return 'w - h - y'
    • def why():
    • return 'w - h - y'
    • def дима_лох(): return 'w - h - y'
Code
Diff
  • def дима_лох():
        return 'w - h - y'
    • def why():
    • def дима_лох():
    • return 'w - h - y'
Code
Diff
  • def why():
        писька = f"w - h - y"
        return писька
    • def why():
    • s = f"w - h - y"
    • return s
    • писька = f"w - h - y"
    • return писька

Why you don't complete this kumite ¯\_(ツ)_/¯ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⡴⢦⠱⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⢎⣜⣉⣉⣧⡱⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⢃⡞⠒⣒⣒⠒⢳⡘⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⢡⣎⡩⠭⠤⠤⠭⢍⣱⡜⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡴⢡⡯⠴⢒⣈⣩⣉⣑⡒⠠⣹⡌⢦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡔⣡⣣⠔⡺⡋⡁⢀⡀⢈⠙⢟⠢⣝⣄⢢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡜⣰⡟⠁⢰⡓⢎⣀⣸⣿⣷⡱⢚⡆⠈⢻⣆⢣⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⡼⣇⠣⡀⠸⡄⢊⢿⣿⣿⡿⡑⢠⠇⢀⠜⣸⢧⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⢠⢋⢼⡙⢌⠳⣍⠲⢽⣄⣁⠂⠐⣈⣠⡯⠔⣡⠞⡡⢊⣧⡙⡄⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⣠⢃⣞⠣⡙⠦⡑⠦⣍⡒⠤⠬⠭⠭⠥⠤⢒⣩⠴⢊⠴⢋⠜⣳⡘⣄⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⣰⣃⣛⣚⣓⣚⣓⣚⣓⣒⣛⣛⣓⣒⣒⣚⣛⣛⣒⣚⣓⣚⣓⣚⣒⣛⣘⣆⠀⠀

Code
Diff
  • why = lambda: "".join(map(lambda _: chr(int(_)),'1196932694569326910469326945693269121'.split("69")))
    • why =lambda:"".join(map(lambda _:chr(int(_)),'1196932694569326910469326945693269121'.split("69")))
    • why = lambda: "".join(map(lambda _: chr(int(_)),'1196932694569326910469326945693269121'.split("69")))
numMinusSeven(1000) --> 143 (arr.length)
function numMinusSeven(num) {
    let arr = []
    while (num > 0) {
        num -= 7
        arr.push(num)
    }
    return arr.length
}
def num_minus_seven(a):
    arr = []
    while a > 0:
        a -= 7
        arr.append(a)
    return arr
Code
Diff
  • return_thousand_minus_n=lambda n:1000-n
    • return_thousand_minus_n=lambda n:1000 - n
    • return_thousand_minus_n=lambda n:1000-n
Code
Diff
  • return_thousand_minus_n=lambda n:1000 - n
    • return_thousand_minus_n=lambda n: 1000 - n
    • return_thousand_minus_n=lambda n:1000 - n
Code
Diff
  • return_thousand_minus_n=lambda n: 1000 - n
    • return_thousand_minus_n= lambda n: 1000 - n
    • return_thousand_minus_n=lambda n: 1000 - n
Code
Diff
  • return_thousand_minus_n= lambda n: 1000 - n
    • return_thousand_minus_n = lambda n: 1000 - n
    • return_thousand_minus_n= lambda n: 1000 - n
Code
Diff
  • return_thousand_minus_n = lambda n: 1000 - n
    • def return_thousand_minus_n(n=0):
    • return 1000 - n
    • return_thousand_minus_n = lambda n: 1000 - n
Code
Diff
  • def return_thousand_minus_n(n=0): 
        return 1000 - n
    • def return_thousand():
    • return 1000
    • def return_thousand_minus_n(n=0):
    • return 1000 - n
Code
Diff
  • def return_thousand(): 
        return 1000
    • def return_thousand(): return 1000
    • def return_thousand():
    • return 1000
Code
Diff
  • def no_trespassing(func):
        def grass(lawn):
            res = func(lawn)
            if res is None:
                return 'No trespassing!'
            return func(lawn)
        return grass
    
    @no_trespassing
    def get_of_my_lawn(on_my_lawn):
        if on_my_lawn is True:
            return 'get of my lawn'
        
    • def no_trespassing(func):
    • def grass(lawn):
    • res = func(lawn)
    • if res is None:
    • return 'No trespassing!'
    • return func(lawn)
    • return grass
    • @no_trespassing
    • def get_of_my_lawn(on_my_lawn):
    • if on_my_lawn is True:return 'get of my lawn'
    • if on_my_lawn is True:
    • return 'get of my lawn'
Loading more items...