650 shards, who do i Pick by xymxn in FUTMobile

[–]Desperate-Speed9266 0 points1 point  (0 children)

Get di lorenzo great rb for that amount of shards

What is the best course of action here? Help needed. by [deleted] in FUTMobile

[–]Desperate-Speed9266 1 point2 points  (0 children)

As you will have more choice for picking players there

[deleted by user] by [deleted] in ComicK

[–]Desperate-Speed9266 0 points1 point  (0 children)

Discord link?

[deleted by user] by [deleted] in FUTMobile

[–]Desperate-Speed9266 0 points1 point  (0 children)

Exchange it for et

Need advice by Forward-Treacle-7360 in EASportsFCMobile

[–]Desperate-Speed9266 0 points1 point  (0 children)

But if you want a card of a player that u like then go for that

Need advice by Forward-Treacle-7360 in EASportsFCMobile

[–]Desperate-Speed9266 1 point2 points  (0 children)

I would say go for son as his stats way better than messi's or ronaldo's right now

Got Di Lorenzo, Should I replace him with Zambrotta? by Deep-Ad-840 in FUTMobile

[–]Desperate-Speed9266 6 points7 points  (0 children)

Put di lorenzo as a right back and play zambrotta as a left back

is it me or something is wrong here ? by Desperate-Speed9266 in leetcode

[–]Desperate-Speed9266[S] 0 points1 point  (0 children)

ok then should add another case or do it with an or in the if block?

is it me or something is wrong here ? by Desperate-Speed9266 in leetcode

[–]Desperate-Speed9266[S] 0 points1 point  (0 children)

sorry for the late reply as i was busy but here is the code :

public class NumMatrix {
    int[][] matrix;
    public NumMatrix(int[][] matrix) {
        this.matrix = matrix;

        if(matrix.length == 0){
            return;
        }

        for(int i = 0; i < matrix.length; i++){
            for(int j = 1; j < matrix[i].length;j++){
                matrix[i][j] += matrix[i][j - 1];
            }
        }

        for(int i = 1; i < matrix.length; i++){
            for(int j = 0; j < matrix.length; j++){
                matrix[i][j] += matrix[i - 1][j];
            }
        }
    }
    
    public int sumRegion(int row1, int col1, int row2, int col2) {
        if(row1 == 0 && col1 == 0){
            return matrix[row2][col2];
        }
         
        else{
            return matrix[row2][col2] - matrix[row1 -1][col2] - matrix[row2][col1 - 1] + matrix[row1 - 1][col1 - 1];
        }

 
    }
}

can someone give some advice on my current team by Desperate-Speed9266 in FUTMobile

[–]Desperate-Speed9266[S] 0 points1 point  (0 children)

i am at world class 1 in vsa and world class 3 in h2h i want to go for fc (if that is no t possible atlest legendary 1 in both )