Variable names with capital letters
class Solution {
public:
    int shortestSubarray(vector<int>& A, int K) {
        
    }
};

Why leetcode use capital letters to representing variables ? It would be nice if it will be small letters.

Comments (0)