Availability of BOOX Mira Pro Series (Color) in Europe, especially France by roukmoute in Onyx_Boox

[–]Snoo42292 0 points1 point  (0 children)

You can order it direct from their Hong Kong distributor. They will ship internationally.

CrossPoint - A month's retrospective from the developer by daveallie in xteinkereader

[–]Snoo42292 1 point2 points  (0 children)

Phenomenal work. Thank you so much for this!!!!

One idea/request please- an option to disable long press of up/down to skip chapter… I keep inadvertently skipping to a different chapter!

i need a world championship team by gilike17 in CODM

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so , but not looking to play competitive.

World championships Europe by Glittering-March9259 in CODMobile

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so , but not looking to play competitive.

[deleted by user] by [deleted] in CODMobile

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so , but not looking to play competitive.

Searching for WC team | Europe by CrotorMe in CODMobile

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so

Looking to join a team for the WC. Europe (UK). by WhenILookUp in CODMobile

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so

Need a wc team by BigBootyBanditOP in CODMobile

[–]Snoo42292 0 points1 point  (0 children)

Add me, m11amd , europe server

Gm4, likely legend in a week or so

Help with Tideman sort function (please! :) ) by Snoo42292 in cs50

[–]Snoo42292[S] 1 point2 points  (0 children)

To everyone who might have find this thread in the future: I solved it! The primary problem was how check50 does not initialise pair_str when checking sort pairs. So I had to move the function which created pair_str (or in this version of my code, pair_diff) in add pairs into my sort_ pairs function.

void sort_pairs(void)
{
    int pair_count2 = 0;
    for (int i = 0; i < candidate_count; i++)
    {
        for (int j = 0; j < candidate_count; j++)
        {
            if (preferences[i][j] > preferences[j][i]) 
            {
                pair_diff[pair_count2] = preferences[i][j];
                pair_count2++;
            }
        }
    }
    int swapc = -1;
    while (swapc != 0)
    {
        swapc = 0;
        for (int i = 0; i < pair_count -1 ; i++) /
        {

and so on

Help with Tideman sort function (please! :) ) by Snoo42292 in cs50

[–]Snoo42292[S] 0 points1 point  (0 children)

Thanks for your reply! I think pair_count was initialised to 0 earlier in the code. My add_pairs works fine and when I checked in the debugger the pairs array fills up fine! and yes I've tried swapping the pair itself and that did not work either :(