Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Follow Instructions solution in Clear category for Follow Instructions by vvm70
def follow(s):
return (s.count('r') - s.count('l'), s.count('f') - s.count('b'))
May 1, 2020
Comments: