ICode9

精准搜索请尝试: 精确搜索
  • (Medium) Alphabet Board Path - LeetCode2019-08-02 16:03:15

      Partially Correct,  When there appears to be Z, the path returned is not correct. still need to fix.   class Solution { public String alphabetBoardPath(String target) { String[] board= {"abcde", "fghij", "klmn

  • spring boot学习笔记2019-07-27 21:00:50

    https://edu.51cto.com/course/13539.html?utm_source=baidu&utm_medium=sem&utm_term=127333802867&utm_content=30367446571&qd=sem

  • sparkSQL2019-07-21 17:01:10

    https://zhuanlan.zhihu.com/p/72921234?utm_source=wechat_session&utm_medium=social&utm_oi=676794672505163776

  • LINQ in Medium trust level2019-07-21 16:03:21

    原文链接:http://www.cnblogs.com/Glen/archive/2007/08/06/845329.html 在用VS 2008 + .Net 3.5 Beta 开发LINQ应用时候要注意,trust level 必须是full默认情况下,WSS站点的trust level是medium,这个可着实影响我很长时间。参考:Medium Trust and Visual Stu

  • 916. Word Subsets - Medium2019-07-20 15:52:47

    We are given two arrays A and B of words.  Each word is a string of lowercase letters. Now, say that word b is a subset of word a if every letter in b occurs in a, including multiplicity.  For example, "wrr"is a subset of "warrior", bu

  • Action Framework Medium attribute 初始化逻辑2019-07-12 14:39:51

    Created by Jerry Wang, last modified on May 05, 2014 在debugger里观察trigger instance里的attribute MEDIUM类型:               该Medium 初始化逻辑如下:     1. 从table PPFTTRIGG里读取相关记录:      2. 通过DB中的记录设置persistent class的attri

  • CF E2 - Daleks' Invasion (medium) (LCA求两点树上路径上的最大边权)2019-07-08 12:53:52

    http://codeforces.com/contest/1184/problem/E2 题意:给出一副图,首先求出这幅图的最小生成树 , 然后修改这幅图上不属于最小生成树的边权,使得修改后的图在求一边生成树的时候可以包含被修改的边(注意:修改的边权要最大 )题目规定只有一课生成树   分析: 现在我们需要解决所有非树边的任

  • 特征工程入门2019-07-03 20:53:42

    https://www.zhihu.com/question/28641663/answer/110165221?utm_source=qq&utm_medium=social&utm_oi=912711207360827392&hb_wx_block=0

  • 网站设计常用技巧(下)2019-06-25 22:53:05

    21.让弹出窗口总是在最上面:<body onblur="this.focus();"> 22.不要滚动条? 让竖条没有: <body style="overflow:scroll;overflow-y:hidden"> </body> 让横条没有: <body style="overflow:scroll;overflow-x:hidden"> </body> 两个都去掉?更简单了 &

  • 31. Next Permutation【Medium】2019-06-22 12:00:08

    Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order). The replacement mu

  • 【leetcode】306(Medium)Additive Number2019-06-15 16:47:51

    解题思路 不断截取字符串来验证 提交代码 class Solution { public boolean isAdditiveNumber(String num) { if(num==null||num.length()<3) return false; if(num.equals("000")) return true; int len=num.length(); for(int p1=1;p1<=len/2+1;p1++

  • ubuntu16.04下MySQL添加远程账户2019-06-11 11:42:51

      数据库默认只允许从本地连接,从其他主机发出的连接会被拒绝,其他主机操作服务器上MySQL时,就需要开启远程账户。Windows系统下开启远程账户比较容易,在Ubuntu,由于MySQL的配置文件是只读类型,过程会稍微繁琐。   1.开放3306端口:   127.0.0.1:3306表示MySQL默认绑定local host,拒绝

  • InvalidSelectorError: Compound class names not permitted报错处理2019-06-08 13:42:09

    InvalidSelectorError: Compound class names not permitted报错处理 环境:python3.6 + selenium 3.11 +  chromedriver.exe 我们在解析网页的时候,总是会遇到大量的tag,如何精确定位到这些tag,也是有很多的方法。 今天在用 find_element_by_class_name获取一个节点对象时,报了个错 Co

  • 前端开发入门到实战:CSS中字体单位:px、em、rem和%2019-06-01 17:55:48

    对于绘图和印刷而言,“单位”相当重要,然而在网页排版里,单位也是同样具有重要性,在CSS3普及以来,更支持了一些方便好用的单位(px、em、rem…等),这篇文章将整理这些常用的CSS单位,也帮助自己未来在使用上能更加得心应手。 “网页”和“印刷”的单位若要把单位做区隔,最简单可以分为“网页”

  • mysql utf8mb42019-05-31 11:48:46

    ref: https://www.jianshu.com/p/9c74de691cfa?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation show VARIABLES like '%character%'

  • [LeetCode] 47. Permutations II_Medium tag: DFS, backtracking2019-05-24 09:38:12

    Given a collection of numbers that might contain duplicates, return all possible unique permutations. Example: Input: [1,1,2]Output:[ [1,1,2], [1,2,1], [2,1,1]] 这个题目在[LeetCode] 46. Permutations_Medium tag: DFS, backtracking 的基础上增加了重复的数,那么

  • 2. Add Two Numbers - Medium - Leetcode解题报告2019-05-19 21:39:29

    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 n

  • [LeetCode] 75. Sort Colors_Medium tag: Two pointers2019-05-12 10:43:19

    Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, 1, and 2 to represent the color red, white, a

  • LeetCode Algorithm 0059 - Spiral Matrix II (Medium)2019-05-01 08:52:47

    LeetCode Algorithm 0059 - Spiral Matrix II (Medium) 返回分类:全部文章 >> 基础知识 返回上级:LeetCode 算法目录 Problem Link: https://leetcode.com/problems/spiral-matrix-ii/ Related Topics: Array Description Given a positive integer n , generate a square ma

  • LeetCode Algorithm 0060 - Permutation Sequence (Medium)2019-05-01 08:52:21

    LeetCode Algorithm 0060 - Permutation Sequence (Medium) 返回分类:全部文章 >> 基础知识 返回上级:LeetCode 算法目录 Problem Link: https://leetcode.com/problems/permutation-sequence/ Related Topics: Math Backtracking Description The set [1,2,3,...,n] contain

  • [LeetCode] (medium) 416. Partition Equal Subset Sum2019-04-30 12:55:16

    https://leetcode.com/problems/partition-equal-subset-sum/ Given a non-empty array containing only positive integers, find if the array can be partitioned into two subsets such that the sum of elements in both subsets is equal. Note: Each of the array e

  • Cannot attach medium 'D:\program\VirtualBox\VBoxGuestAdditions.iso' {}: medium is alrea2019-04-10 19:44:23

    详细的错误信息如下: Cannot attach medium 'D:\program\VirtualBox\VBoxGuestAdditions.iso' {83b35b10-8fa2-4b81-8187-b2fc212ded22}: medium is already associated with the current state of machine uuid {f36ac97e-4847-4390-89e9-e3296d5ed51d}!. 返回 代码: VBOX_E

  • leetcode 73. Set Matrix Zeroes (medium)2019-04-07 14:52:54

    为了使用常数空间大小,将矩阵的第一行、第一列用来记录是否当前行、列需要全部置为0 class Solution { public: void setZeroes(vector<vector<int>> &matrix) { size_t m = matrix.size(); size_t n = matrix[0].size(); bool row_zero = false; bool col_zero =

  • Longest Substring Without Repeating Characters--Medium2019-02-27 21:03:57

    一、问题描述   Given a string, find the length of the longest substring without repeating characters.   意思是给你一个字符串,找到没有重复字符的最长字串。 二、生词    duplicate  adj /ˈdjuːplɪkeɪt/ 重复的   nest  vt. /nest/ 嵌套 三、样例及说明   

  • docker 容器生命周期2019-02-26 10:51:48

    参考博客:https://medium.com/devopsion/life-and-death-of-a-container-146dfc62f808  

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有