摘要:
pwd [-LP] Print the name of the current working directory. ls [OPTION]… [FILE]… List information about the FILEs (the current directory by default). - 阅读全文
摘要:
开发中。。。 👉 这里先附上Github Repo地址和作业地址 👈 Overviews OpenAI: Spinning Up Recent progress of deep reinforcement learning: from AlphaGo to AlphaGo Zero Modern 阅读全文
摘要:
这道题有点抽象, 先举几个栗子:chestnut:, 找一下规律. (太长不看) 记从$1$到$N$中$1$出现的次数为$f(N)$, 个位上的数为$a$, 十位上的数为$b$, 百位上的数为$c$, 以此类推. 当$N$为1位数时 设$N=6$, 则$S={1}, f(N)=1$. 此时总结可得: 阅读全文
摘要:
浮点错误:边加边化简(注意溢出) 特判:和为 $0$ 补充:带分数 非零自然数与真分数相加(负整数时与真分数相减)所成的分数 👉 code 阅读全文
摘要:
记原数组为 \(a\),部分排序数组为 \(s\) Insertion sort \(s\) 的前面部分有序,后面的无序部分与 \(a\) 相同 Merge sort 对 \(a\) 进行模拟归并排序,将每一个状态与 \(s\) 比较。若 \(a=s\),则再进行一次归并排序后退出 Heap sor 阅读全文