摘要:
前言 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 co 阅读全文
摘要:
前言 考点: 函数柯里化 每天一道面试题,以后只更新于微信订阅号"夜雨成诗",点击右面的扫码添加即可 内容 题目 请实现add(1,2)(3) 答案 function add (...args) { return args.reduce((a, b) => a + b) } function c 阅读全文
摘要:
前言 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each 阅读全文
摘要:
前言 如需查看MySQL的登录日志,首先要确认开启了general_log general_log会记录所有的SQL操作,一般不建议开启。 内容 查看general_log日志是否开启和存放目录 show global variables like '%general%'; 默认是以文件输出的,不输 阅读全文