12 lines
157 B
C
12 lines
157 B
C
|
|
#include "push_swap.h"
|
|
|
|
void hugo_sort(t_stack **a, t_stack **b, t_list **solution)
|
|
{
|
|
(void)b;
|
|
sa(a, solution);
|
|
pb(b, a, solution);
|
|
sb(a, solution);
|
|
}
|
|
|