mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
fix(editor): remove unnecessary whitespace in default editor value
This commit is contained in:
parent
5433557225
commit
e975dde0c2
@ -5,12 +5,12 @@ export const DEFAULT_EDITOR_VALUE: Record<SupportedLanguage, string> = {
|
|||||||
* Note: The returned array must be malloced, assume caller calls free().
|
* Note: The returned array must be malloced, assume caller calls free().
|
||||||
*/
|
*/
|
||||||
int* twoSum(int* nums, int numsSize, int target, int* returnSize) {
|
int* twoSum(int* nums, int numsSize, int target, int* returnSize) {
|
||||||
|
|
||||||
}`,
|
}`,
|
||||||
cpp: `class Solution {
|
cpp: `class Solution {
|
||||||
public:
|
public:
|
||||||
vector<int> twoSum(vector<int>& nums, int target) {
|
vector<int> twoSum(vector<int>& nums, int target) {
|
||||||
|
|
||||||
}
|
}
|
||||||
};`,
|
};`,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user