本文分类:news发布日期:2024/12/28 19:51:08
相关文章
【POJ-1061 青蛙的约会】
题目 代码
#include <bits/stdc.h>
using namespace std;
typedef long long LL;
LL ex_gcd(LL a, LL b, LL &x, LL &y)
{if (b 0){x 1;y 0;return a;}LL gcd ex_gcd(b, a % b, x, y);LL tmp x;x y;y tmp - a / b * y;return gcd;
}
int main()
{LL x, y…
建站知识
2024/12/7 0:06:58
vue3自动暴露element-plus组件的ref
自动暴露子组件的方法,注意在TS下,需要自己声明类型,我这里全用any代替了 <template><el-button click"getFocus">获得焦点</el-button><com ref"comRef" />
</template><script setup…
建站知识
2024/12/28 19:31:53
ESP32-定时器中断
前言
一、关于ESP32定时器常用的代码
1.#include
2.#include
3.#include 4.总结
二、可以使用的代码
1.代码
2.代码介绍
总结 前言 环境:Arduino
芯片:ESP32-WROOM-DA Module
更新时间:2024-09-25 一、关于ESP32定时器常用的代码
资料网上…
建站知识
2024/10/4 12:01:43
Golang | Leetcode Golang题解之第433题最小基因变化
题目: 题解:
func diffOne(s, t string) (diff bool) {for i : range s {if s[i] ! t[i] {if diff {return false}diff true}}return
}func minMutation(start, end string, bank []string) int {if start end {return 0}m : len(bank)adj : make([][…
建站知识
2024/10/6 12:53:40
Unity-物理系统-刚体加力
一 刚体自带添加力的方法 给刚体加力的目标就是 让其有一个速度 朝向某一个方向移动 1.首先应该获取刚体组件 rigidBody this.GetComponent<Rigidbody>(); 2.添加力 //相对世界坐标 //世界坐标系 Z轴正方向加了一个里 //加力过后 对象是否停止…
建站知识
2024/12/21 6:27:55
LLM之基于llama-index部署本地embedding与GLM-4模型对rag系统进行测评
前言
有时间在写吧
评估指标
llama-Index 内置了有评估工具,今天教大家如何使用
llama-Index 有以下评估指标: Answer Relevcancy Context Relevancy Relevancy Faithfulness Correctness
感兴趣可以去 llama_index.core.evaluation 文件查看 …
建站知识
2024/12/22 12:42:26