Testing TwoSum Algorithm Implementations in hello-algo
This test suite validates the TwoSum algorithm implementation, testing both brute force and hash table approaches for finding pairs of numbers that sum to a target value. The tests ensure correct functionality of two distinct solution methods in Go.
Test Coverage Overview
Implementation Analysis
Technical Details
Best Practices Demonstrated
krahets/hello-algo
zh-hant/codes/go/chapter_searching/two_sum_test.go
// File: two_sum_test.go
// Created Time: 2022-11-25
// Author: reanon ([email protected])
package chapter_searching
import (
"fmt"
"testing"
)
func TestTwoSum(t *testing.T) {
// ======= Test Case =======
nums := []int{2, 7, 11, 15}
target := 13
// ====== Driver Code ======
// 方法一:暴力解法
res := twoSumBruteForce(nums, target)
fmt.Println("方法一 res =", res)
// 方法二:雜湊表
res = twoSumHashTable(nums, target)
fmt.Println("方法二 res =", res)
}