
leetcode-java
文章平均质量分 66
wjx_sky
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
27.leetCode637:Average of Levels in Binary Tree
题目:Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array. Example 1: Input: 3 / \ 9 20 / \ 15 7 Output: [3, 14.5, 11]原创 2017-10-12 08:38:46 · 225 阅读 · 0 评论 -
28.leetCode647:Palindromic Substrings
题目: Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes are counted as different substrings even they con原创 2017-10-15 16:16:27 · 185 阅读 · 0 评论