fix(editor): remove unnecessary whitespace in default editor value

This commit is contained in:
cfngc4594 2025-02-26 00:34:39 +08:00
parent 5433557225
commit e975dde0c2

View File

@ -5,12 +5,12 @@ export const DEFAULT_EDITOR_VALUE: Record<SupportedLanguage, string> = {
* Note: The returned array must be malloced, assume caller calls free().
*/
int* twoSum(int* nums, int numsSize, int target, int* returnSize) {
}`,
cpp: `class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
}
};`,
};