Basic CSS interview question and anwser (Q&A)
Basic CSS interview question and anwser (Q&A) as shown below, there are some questions about the basics of css. what's the priority of css selectors ? what's the difference between link and @import ? what kind of methods to hide element in the web page ? what's the difference between em、px a...
2020-06-13
[LintCode] Minimum Absolute Difference in BST
Minimum Absolute Difference in BSTGiven a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes.
2018-06-25
[LintCode/LeetCode] Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and nums[j] is at most t and the absolute difference between i and j is at most k.
2018-07-23
[CS101] Programming Languages and OOP 编程语言及面向对象基础题
What is singleton? What's its cons and pros? How to implement it?Definition: Singleton pattern is a design pattern that ensure that only one instance of a class is created and Provide a global access point to the object.
2015-09-07
Java interview question
Override: is a language feature that allows a subclass to provide a specific implementation of a method. The overriding method in subclass has same name, same parameters and same return type as the method in the parent class. static, private and final methods are not overridden in Java.
2016-05-27
[LeetCode] 530. Minimum Absolute Difference in BST
Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes.
2018-11-13
Install netCDF under mac os
I'm using the cpp interfaces. It requires you first install the basic netCDF C class and then install the interface for cpp, because the cpp interface is based on the classic model.
2016-11-15
Difference between SoftReference and WeakReference in Java
在学习JVM的过程中大概率会看到类似 SoftReference 和 WeakReference的字样,本部分挑选了Stack Flow 上的高赞回答进行整理。
2023-06-16
tensorflow两种padding方式
转自stackoverflow-What is the difference between 'SAME' and 'VALID' padding in tf.nn.max_pool of tensorflow?
从 Quora 的 187 个问题中学习机器学习和NLP
作者:chen_h微信号 & QQ:862251340微信公众号:coderpai简书地址:[链接] Quora 已经变成了一个获取重要资源的有效途径。许多的顶尖研究人员都会积极的在现场回答问题。 以下是一些在 Quora 上有关 AI 的主题。如果你已经在 Quora 上面注册了账号,你可以订阅这些主题。 Computer-Science (5.6M followers) Machin...
2017-12-18
[HackerRank] Diagonal Difference
Given a square matrix of size N x N, calculate the absolute difference between the sums of its diagonals.
2016-05-30
记 “猜数字” 程序
{代码...}
2020-10-31
LeetCode 220_Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and nums[j] is at most t and the absolute difference between i and j is at most k.
2017-01-23
[LintCode/LeetCode] Minimum Time Difference
Given a list of 24-hour clock time points in "Hour:Minutes" format, find the minimum minutes difference between any two time points in the list.
2018-07-23
[LintCode/LeetCode] Contains Duplicate II
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute difference between i and j is at most k.
2018-07-23
2021 Top 100 C#/.NET Interview Questions And Answers
Dispose - This method uses interface – “IDisposable” interface and it will free up both managed and unmanaged codes like – database connection, files etc.
2021-04-22
SAP CRM WebClient UI交互式报表的Gross Value工作原理
SAP CRM WebClient UI交互式报表(Interactive Report)的Gross Value工作原理 the selection fields passed to backend for this report: what is difference between Gross value header and Gross value of Service Orders? Subject: RE: Some questions regarding CRM Interactive Report OLTP based on so called rep...
2020-03-07
C++ Graph Algorithms
1 Task DescriptionYou are asked to use C++ to solve the following puzzle.Hint: All it takes is an algorithm mentioned in this course (with a slight twist).The graph is undirected!2 Submission GuidelineYou must follow this guideline! Your submission will be marked automatically. Failure tofollow t...
2021-11-05
Difference between the methods update() and doFinal() in Cipher
update() adds data to the Cipher’s internal buffer, then returns all currently completely encoded blocks. If there are any encoded blocks left over, they remain in the Cipher’s buffer until the next call, or a call to doFinal(). This means that if you call update() with a four byte array to encry...
2016-09-18
[LeetCode] Minimum Absolute Difference in BST
Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes.
2017-06-20