Remove function comment

This commit is contained in:
gyt95 2022-12-16 14:38:44 +08:00
parent 87b6026529
commit c8da48c0d6

View File

@ -4,11 +4,6 @@
* Author: gyt95 (gytkwan@gmail.com)
*/
/**
* @param {number[]} nums
* @param {number} target
* @return {number[]}
*/
function twoSumBruteForce(nums, target) {
let n = nums.length;
// 两层循环,时间复杂度 O(n^2)