def clear_line_if_tty(): if use_tty_output(): std_out_clear_line() else: print(end='\n')
def return_caret_if_tty_output(): if use_tty_output(): print('\r', end='') else: print('\n', end='')
def show_complexity_notification(): if use_tty_output(): print("Time complexity:\r", end="")
def show_complexity_notification(): if use_tty_output(): print('Time complexity:\r', end='')