最新 最热

「R」R 修改全局选项

R语言的选项设定可以从全局范围影响当前的会话,我们调用getOption()查看选项值,使用options()修改它。

2020-07-06
0

LeetCode 258. Add Digits

同余定理,任何一个10进制数n 都可以表示成 n = a10^x + b10^(x-1) + .... c*10^0

2020-04-21
0

ggpubr加相关性系数和p值

ggpubr是基于ggplot2的一个作图包,在画图的时候比较省事,用一行代码可以做几行代码的事情。比如:

2020-04-01
1

如何在Power Query中提取数据?——数值篇

数值的提取主要是进位的问题。在Power Query中对于进位有着比Excel更多的选择。

2020-03-23
0

leetcode刷题: 002 Add Two Numbers

You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add...

2020-03-12
0

[codewars_python]Sum

In this kata, you must create a digital root function.

2020-01-16
0

《模式识别与智能计算》的数据集

这本书我老师说很好,让我买来看看,结果一学期过去了,emmmm,不是我的问题,是这本书没有数据,没有源代码(强行甩锅),咳咳,跑远了,这本书的数据集我我到网上看到了,它的数据集格式是这样的...

2020-01-15
0

Reverse digits of an

Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321

2020-01-13
0

LeetCode 1291. Sequential Digits

题目class Solution {public: int ans[10005]; vector<int> sequentialDigits(int low, int high) { int x = 1; int pos=0; int...

2019-12-18
0

【Codeforces】1213C - Book Reading

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

2019-11-08
0