Welcome to kimi's blog

摘要: [TOC] # 计算题 ```python ``` ## 1. 给定一个长度为 n 的整数数组 nums 和一个目标值 target,请你从 nums 中选出三个整数,使得它们的和与 target 最接近。 ```python def threeSumClosest(nums, target): n 阅读全文
posted @ 2023-05-22 16:44 魔女宅急便 阅读(27) 评论(0) 推荐(0)
Title