From c8da48c0d67ecf631d135c85344cda4eac73ec92 Mon Sep 17 00:00:00 2001 From: gyt95 Date: Fri, 16 Dec 2022 14:38:44 +0800 Subject: [PATCH] Remove function comment --- .../chapter_computational_complexity/leetcode_two_sum.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/codes/javascript/chapter_computational_complexity/leetcode_two_sum.js b/codes/javascript/chapter_computational_complexity/leetcode_two_sum.js index 24b5ba84d..8afe1fd4d 100644 --- a/codes/javascript/chapter_computational_complexity/leetcode_two_sum.js +++ b/codes/javascript/chapter_computational_complexity/leetcode_two_sum.js @@ -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)