Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Follow Instructions by Jitesh_Talreja
def follow(synt):
xaxis = synt.count('f') - synt.count('b')
yaxis = synt.count('r') - synt.count('l')
return (yaxis, xaxis)
June 24, 2020
Comments: