Esempio n. 1
0
def exists():
    """dictionary.c, dictionary.h, and Makefile exist"""
    check50.exists("dictionary.c", "dictionary.h")
Esempio n. 2
0
def exists():
    """caesar.c exists."""
    check50.exists("caesar.c")
Esempio n. 3
0
def exists():
    """magic.c exists"""
    check50.exists("magic.c")
    check50.include("1.txt")
Esempio n. 4
0
def exists():
    """linear.c exists"""
    check50.exists("linear.c")
Esempio n. 5
0
def exists():
    """datatypes.c exists"""
    check50.exists("datatypes.c")
Esempio n. 6
0
def exists():
    """Credit.java exists"""
    check50.exists("Credit.java")
Esempio n. 7
0
def exists():
    """iowa.py exists"""
    check50.exists("iowa.py")
Esempio n. 8
0
def exists():
    """whodunit.c exists"""
    check50.exists("whodunit.c")
Esempio n. 9
0
def exists():
    """variables.c exists"""
    check50.exists("variables.c")
Esempio n. 10
0
def exists():
    """chpt3q2.c exists"""
    check50.exists("chpt3q2.c")
Esempio n. 11
0
def exists():
    """climate.ipynb exists."""
    check50.include("climate.data")
    check50.exists("climate.ipynb")
Esempio n. 12
0
def exists():
    """basics.c exists."""
    check50.exists("basics.c")
Esempio n. 13
0
def shell_exists():
    """shell.c exists"""
    check50.exists("shell.c")
    check50.include("shell_soln")
def exists():
    """cash.c exists"""
    check50.exists("cash.c")
Esempio n. 15
0
def exists():
    """vigenere.c exists."""
    check50.exists("vigenere.py")
Esempio n. 16
0
def exists():
    """Check if output.csv exists."""
    check50.exists("output.csv")
    check50.include("data/")
Esempio n. 17
0
def exists():
    """typecasting.c exists"""
    check50.exists("typecasting.c")
Esempio n. 18
0
def exists():
    """hello.py exists."""
    check50.exists("hello.py")
Esempio n. 19
0
def exists(): # the name of the check
    """File exists""" # this is what you will see when running check50
    check50.exists("hello.py") # the actual check
Esempio n. 20
0
def exists():
    check50.exists("malloc3.c")
    with open("malloc3.c") as f:
        sources_buf = f.read()
    return sources_buf
Esempio n. 21
0
def exists():
    """kvadratas.cpp exists"""
    check50.exists("kvadratas.cpp")
Esempio n. 22
0
def exists():
    """cash_change.c exists"""
    check50.exists("cash_change.c")
Esempio n. 23
0
def exists():
    """File mirror.py exists"""
    check50.exists("mirror.py")
Esempio n. 24
0
def exists():
    """%s exists.""" % filename
    check50.exists(filename)
Esempio n. 25
0
def exists():
    check50.exists("inheritance.cpp")
    with open("inheritance.cpp") as f:
        sources_buf = f.read()
    return sources_buf
Esempio n. 26
0
def exists():
    """placeholders.c exists"""
    check50.exists("placeholders.c")
    check50.include("1.txt")
    check50.include("2.txt")
Esempio n. 27
0
def leaky_exists():
    """leaky.c exists"""
    check50.exists("leaky.c")
Esempio n. 28
0
def exists1():
    """foo.py exists"""
    check50.exists("foo.py")
Esempio n. 29
0
def exists():
    """mergesort.c exists"""
    check50.exists("mergesort.c")
Esempio n. 30
0
def exists():
    """Variables.c exists"""
    check50.exists("variables.c")
    check50.include("1.txt")