Algorithm
本周Leetcode算法题:
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Example:
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Explanation: 342 + 465 = 807.
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/add-two-numbers
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解答详情 :
1 | /** |
Review
https://www.baeldung.com/spring-5-reactive-websockets
博文讲述了响应式springboot后台使用websocket交互的方式
Tip
背景: 大数据组件数据质量管理工具Griffin本地Windows环境运行失败
现象: 程序报错–Failed to locate the winutils binary in the hadoop binary path
解决: https://blog.csdn.net/iamlihongwei/article/details/79876947
Sharing
整理了一些Linux操作文件的命令