1 硬件选型
CUDA 核心和 Tensor 核心
CUDA 核心:是NVIDIA开发的并行计算平台和编程模型,用于GPU上的能用计算,可做很多的工作。应用在游戏、图形渲染、天气预测和电影特效Tensor 核心:张量核心,专门设计用于深度学习…
目录
A - Programming Contest
B - Base Station Construction
C - Trading
D - New Houses
E - New but Nostalgic Problem
I - Path Planning
K - Peg Solitaire A - Programming Contest
签到题:直接模拟
直接按照题目意思模拟即可,为了好去…
创建测试脚本
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;public class myTest : MonoBehaviour
{// Start is called before the first frame updatepublic Button _codeBindBtn null;void Start(){if (_codeBi…
1 回顾Linux基础
(1)打开终端:Ctrl Alt T (2)ls (3)cd
cd ~
cd /(4)pwd (5)mkdir -p catkin_ws/src (6)rm -rf &#…
阅读目录 1. 题目2. 解题思路3. 代码实现 1. 题目 2. 解题思路
此题使用动态规划求解,假设 d p [ i ] [ 0 ] dp[i][0] dp[i][0] 代表不偷窃第 i i i 个房屋可以获得的最高金额,而 d p [ i ] [ 1 ] dp[i][1] dp[i][1] 代表偷窃第 i i i 个房屋可以获…