Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
instructions.count(...) solution in Clear category for Follow Instructions by Vealo
def follow(instructions):
return (instructions.count("r") - instructions.count("l"),
instructions.count("f") - instructions.count("b"))
April 19, 2021