上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: Easy Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of pa 阅读全文
posted @ 2019-09-24 10:41 程嘿嘿 阅读(354) 评论(0) 推荐(0) 编辑
摘要: Easy Given an n-ary tree, return the postorder traversal of its nodes' values. For example, given a 3-ary tree: Return its postorder traversal as: [5, 阅读全文
posted @ 2019-09-19 13:52 程嘿嘿 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 方法一: 给input添加 -webkit-appearance: none; 隐藏默认样式。然后添加自己的样式就好了。 例如: .radioBox input{ -webkit-appearance: none; width: 20px; height: 20px; padding: 0; bac 阅读全文
posted @ 2019-09-17 17:16 程嘿嘿 阅读(9531) 评论(0) 推荐(1) 编辑
摘要: javascript: input单选框CheckBox对象参考:https://www.w3school.com.cn/jsref/dom_obj_checkbox.asp 获取选中值: 判断各选项是否选中: 设置选中值: 设置不选中: jquery: 获取选中值: 方括号里也可以换成单选框的na 阅读全文
posted @ 2019-09-16 15:27 程嘿嘿 阅读(9303) 评论(0) 推荐(0) 编辑
摘要: Easy Write a class RecentCounter to count recent requests. It has only one method: ping(int t), where t represents some time in milliseconds. Return t 阅读全文
posted @ 2019-09-11 13:59 程嘿嘿 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Easy Students are asked to stand in non-decreasing order of heights for an annual photo. Return the minimum number of students not standing in the rig 阅读全文
posted @ 2019-09-09 14:03 程嘿嘿 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Easy Given an n-ary tree, return the preorder traversal of its nodes' values. For example, given a 3-ary tree: Return its preorder traversal as: [1,3, 阅读全文
posted @ 2019-09-06 17:25 程嘿嘿 阅读(119) 评论(0) 推荐(0) 编辑
摘要: jquery中的鼠标移入和移除动作控制元素的显示或隐藏。 效果: 方法: 使用jquery中的鼠标移入和移除动作: 移入:onmouseover 移出:onmouseout html js css 阅读全文
posted @ 2019-09-05 16:53 程嘿嘿 阅读(6387) 评论(0) 推荐(0) 编辑
摘要: Easy Every email consists of a local name and a domain name, separated by the @ sign. For example, in alice@leetcode.com, alice is the local name, and 阅读全文
posted @ 2019-09-04 17:21 程嘿嘿 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Easy You are given an array of strings words and a string chars. A string is good if it can be formed by characters from chars (each character can onl 阅读全文
posted @ 2019-09-03 18:03 程嘿嘿 阅读(457) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页