首页
沸点
课程
数据标注
HOT
AI Coding
更多
直播
活动
APP
插件
直播
活动
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
登录
注册
用户50699092305
掘友等级
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
0
文章 0
沸点 0
赞
0
返回
|
搜索文章
最新
热门
数值操作的期望计算问题
#include #include #include // 用于格式化输出 using namespace std; string solution(int a, int b) { // 计算期望值
小C的类二进制拼图
#include #include using namespace std; int solution(string n) { int max_digit = 0; // 用于记录最大位数 } int
小C的外卖超时判断
#include #include using namespace std; std::string solution(const std::string& t1, const std::string
SQL代码补全功能
def solution(num, data, input): res = set() # 使用集合来去重 for s in data: if s.startswith(input): res.add
统计班级中的说谎者
#include #include #include int solution(std::vector A) { int N = A.size(); std::vector count(101, 0)
数字翻译成字符串的可能性
def solution(num): str_num = str(num) # 将数字转成字符串 n = len(str_num) if n == 0: return 0 if n == 1: ret
二叉树供暖问题
from bisect import bisect_right from typing import Literal def solution(nodes: list[int]) -> int: an
最少步数归零问题
def min_steps_for_number(num: int) -> int: if num == 0: return 0 if num < 10: return 1 str_num = str
删除路径后的最短路问题
import math from heapq import heappush, heappop def solution(n: int, s: int, t: int, x: list, y: lis
二分数组组合问题
给定一个数组array_a,数组中的每个元素都可以被规范化到[0,9]的范围内,目标是判断是否存在一个子集,使得该子集内元素之和的个位数等于A或B,或者该子集内元素之和的个位数等于(A+B)%10。
下一页
个人成就
文章被阅读
1,420
掘力值
212
关注了
0
关注者
0
收藏集
0
关注标签
0
加入于
2024-10-22