数组
鸡蛋豆腐仙子
从本科开始讨厌了单片机 晶体管 编程 c++5-6年后,发现技术就是我的真爱,再重新选择一次,我还是会选择当程序员。我现在觉得自己什么都不会,可是还是相信会变成别人仰望的大神。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[转自花花]fenwick tree
原创 2020-02-10 12:42:44 · 180 阅读 · 0 评论 -
【刷题】Leetcode 2. Add Two Numbers
** 2. Add Two Number ** class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { int jinwei = 0; ListNode head = new ListNode(0); ListNode p = head; ...原创 2019-11-12 19:21:29 · 215 阅读 · 0 评论 -
【刷题】Leetcode 1. 2Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same e...原创 2019-11-11 13:06:26 · 124 阅读 · 0 评论
分享