狗年第一天我在 LC 上用 Go 刷了编号为 168 的题。

2018-02-16 11:49:12 +08:00
 banxi1988

https://leetcodechina.com/submissions/detail/4096/

5783 次点击
所在节点    程序员
14 条回复
azh7138m
2018-02-16 12:58:33 +08:00
前段时间不是有个 php 的过来吐槽 Perl 加法吗,了解一下
alcarl
2018-02-16 13:39:15 +08:00
@azh7138m perl 加法肿么了⊙∀⊙!
azh7138m
2018-02-16 14:19:33 +08:00
@alcarl 就是这题。。。。
stzz
2018-02-16 17:23:04 +08:00
打开要登陆,登陆完 404
hotea
2018-02-16 17:47:53 +08:00
Cbdy
2018-02-16 17:53:26 +08:00
10 进制转 26 进制?
以前写过一个 10 进制转 62 进制的小方法用来压缩字符串。。。
banxi1988
2018-02-16 18:05:54 +08:00
@Cbdy 基本思路是这样子的。 但是有额外的问题需要处理。
主要是这个列名中是没有 0 值的。
0person
2018-02-16 18:08:28 +08:00
502
naiba
2018-02-16 18:29:32 +08:00
你这个叫 LCC 吧
cheesea
2018-02-16 19:35:29 +08:00
账户不互通,没有讨论。
综上 lcc 打入死牢
banxi1988
2018-02-16 20:29:52 +08:00
@0person 已经恢复了。
@cheesea 这个我又注册了一次。主要是觉得国内版网络应该快一些,可能以后人气也会旺一些。

又刷了两个吉祥序号题。66 和 88
hazhaz
2018-02-16 22:57:16 +08:00
@cheesea 刚开放测试啊,讨论应该是会有的吧,总之不用翻墙了。新年想刷个 666,结果有 665,有 667,结果就是没有 666
ToT
2018-02-17 04:58:25 +08:00
@hazhaz

LeetCode 666 Path Sum IV

If the depth of a tree is smaller than 5, then this tree can be represented by a list of three-digits integers.

For each integer in this list:
The hundreds digit represents the depth D of this node, 1 <= D <= 4.
The tens digit represents the position P of this node in the level it belongs to, 1 <= P <= 8. The position is the same as that in a full binary tree.
The units digit represents the value V of this node, 0 <= V <= 9.
Given a list of ascending three-digits integers representing a binary with the depth smaller than 5. You need to return the sum of all paths from the root towards the leaves.

Example 1:
Input: [113, 215, 221]
Output: 12
Explanation:
The tree that the list represents is:
3
/ \
5 1

The path sum is (3 + 5) + (3 + 1) = 12.
Example 2:
Input: [113, 221]
Output: 4
Explanation:
The tree that the list represents is:
3
\
1

The path sum is (3 + 1) = 4.
hazhaz
2018-02-17 11:10:14 +08:00
@ToT lccn 没有啊,老板富啊,美金玩家啊

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/430925

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX