Search found 1 match

by juliannieb
Tue Oct 21, 2014 8:38 pm
Forum: Volume 126 (12600-12699)
Topic: 12673 - Football
Replies: 12
Views: 5761

Re: 12673 - Football

Hey, can anybody help me please? My code works with all the test cases that I´ve tried, but I'm getting WA!!!
#include <stdio.h>
#include <stdlib.h>

void quick_sort (int *diferencias, int inicio, int final) {
int i, j, central;
int pivote;
central = (inicio + final) / 2;
pivote = diferencias ...

Go to advanced search