You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
: move_zeros_to_end ( addr len ) 0 do dup i cells + @ 0 = if dup i cells + i' i - 1 - 0 +do ( addr loop_base_addr ) dup i cells + swap dup i 1 + cells + rot swap_at loop drop cell - then loop drop ;
create arr1 0 , 1 , 2 , 0 , 3 , 4 , 5 ,
: test1 arr1 7 2dup move_zeros_to_end 0 do dup i cells + ? loop ;
create arr2 0 , 0 , 1 ,
: test2 arr2 3 2dup move_zeros_to_end 0 do dup i cells + ? loop ;