码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
设置a标签,实现点击跳转页面
设置a标签的属性target,下面对target属性进行描述: 跳转在同一个窗口 1、target="_self", 它使得目标文档载入并显示在相同的框架或者窗口中作为源文档。(此处就是实现你的每次跳转都在同一个窗口的核心点) 跳转在新的窗口 2、target="_blank" ,浏览器总在一个新打 ...
分类:其他好文   时间:2021-06-28 20:45:09    阅读次数:0
[LeetCode] 215. Kth Largest Element in an Array_Medium tag: Array, Heap
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:其他好文   时间:2021-06-28 20:35:29    阅读次数:0
Java-IO流系列-FileInputStream和FileOutStream
FileInputStream和FileOutStream 测试FileInputstream和FileOutpuStream的使用 结论: 对于文本文件(. txt,.java,.c..cpp),使用字符流处理 对于非文本文件( . jpg ,.mp3, . mp4, .avi,.doc.ppt. ...
分类:编程语言   时间:2021-06-28 19:37:54    阅读次数:0
Jupyter Notebook默认路径修改
终端输入jupyter notebook --generate-config,回车,会显示jupyter_notebook_config.py文件的完整路径 编辑该文件,搜索#c.NotebookApp.notebook_dir = '',后面引号内修改为自定义的工作空间,注意:工作空间路径中\要替 ...
分类:其他好文   时间:2021-06-28 19:24:30    阅读次数:0
DBA学RUST设计模式--状态模式
一个对象会有不同的状态,不同的操作会影响状态,同时状态改变,也会影响对象和业务流程。例如,薛定谔的猫有3种状态:生、死、不确定,假设3种状态可转换. 名称为CatState的trait描述了对猫的所有状态操作: trait CatState { fn make_live(self: Box<Self ...
分类:数据库   时间:2021-06-28 18:49:22    阅读次数:0
leetcode-python-二叉树的最小深度
递归找最小 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # ...
分类:编程语言   时间:2021-06-28 18:47:31    阅读次数:0
How to Enable VNCR on RAC Database to Register only Local Instances (Doc ID 1914282.1)
VNCR is supported for the cluster. Use MOS note 1914282.1 to ensure you've done all the required steps How to Enable VNCR on RAC Database to Register ...
分类:数据库   时间:2021-06-28 17:54:34    阅读次数:0
leetcode-python-二叉搜索树中第K小的元素
逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:编程语言   时间:2021-06-25 16:32:21    阅读次数:0
unittest测试用例
import timeimport unittestdef my_sum(a, b): a += 1 b += 2 return a + b# 生成测试用例class TestSum(unittest.TestCase): def test_001(self): print(my_sum(1,2)) ...
分类:其他好文   时间:2021-06-24 17:47:34    阅读次数:0
Cisco Packet Tracer :PVST Self-detection Experiment
01.STP Configuration Activity 5.2.5: Configuring STP NOTE TO USER: Although you can complete this activity without printed instructions, a PDF version ...
分类:系统相关   时间:2021-06-24 17:37:01    阅读次数:0
21530条   上一页 1 2 3 4 ... 2153 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!