总结 代码地址 题目地址 关键算法 难度 Q1-Countdown.cpp Countdown 直接遍历 简单 Q2-StableWall.cpp Stable Wall 拓扑排序 简单 Q3-PerfectSubway.cpp Perfect Subway 组合数学+trik 简单 Q4-Candies.cpp
Author: 花梓
Google_Kick_Start 2020 Round H
总结 代码地址 题目地址 关键算法 难度 Q1-Retype.cpp Retype 直接计算 简单 Q2-BoringNumber.cpp Boring Numbers 排列组合 简单 Q3-Rugby.cpp Rugby 最优解 较难 Q4-Friends.cpp Friends
Google_Kick_Start 2020 Round B
总结 代码地址 题目地址 关键算法 难度 Q1-BikeTour.cpp Bike Tour 直接遍历 简单 Q2-BusRoutes.cpp Bus Routes 直接遍历 简单 Q3-RobotPathDecoding.cpp Robot Path Decoding 系数栈
Google_Kick_Start 2020 Round A
总结 代码地址 题目地址 关键算法 难度 Q1-Allocation.cpp Allocation 贪心算法 简单 Q2-Plates.cpp Plates 动态规划 较简单 Q3-Workout.cpp Workout 二分法 较难 Q4-Bunding.cpp Bunding 前缀树+深度搜索
Classical Convolutional Neural Network-LeNet-5
LeNet-5 (1998) LeNet-5 is a convolutional neural network algorithm proposed by Yann LeCun in 1998, originally used to solve the
CentOS 8 / RHEL 8 install g++ compiler
CentOS 8 / RHEL 8 does not have a g++ compiler by default, but it usually comes with a gcc-8.3
Convert cifar10 data to image files
Download the cifar10 dataset Get the file name queue Read files from the file queue Start the filling queue thread
CentOS 8 / RHEL 8 install PHP 7.4
CentOS 8/RHEL 8 uses yum tool to install php7.2 by default. For some software, php7.4 version is required. The following
Linux install nginx web server
Nginx is a lightweight web server/reverse proxy server and email (IMAP/POP3) proxy server, under the BSD-like protocol issued. Its characteristics
Install the Anaconda environment based on Python3.7 under Linux
Anaconda is a very huge python resource library for science. In view of the wide application of python in AI,
Source installation under Linux (Raspberry Pi) to install sz, rz software
1. Enter the terminal and obtain root permissions su- 2. Download the source code resources Local download: lrzsz-0.12.20.tar.gz # Terminal
Python determines whether the file exists
Python determines whether the file exists import os # Determine whether the folder exists, if not, create a folder if
Centos7 install Tesseract-OCR 4.1 error report configure: error: Leptonica 1.74 or higher is required. Solution
< p style=”font-size:20px”>When installing Tesseract-OCR 4.1 on centos7, we know that the official website only gives a compilation tutorial for
NP and the difficulty of calculation
For an algorithm, it is generally necessary to calculate its time complexity and space complexity to measure its efficiency. However,
Assembler-transfer string1 in the data segment to string2 in the additional segment
data segment string1 db ‘assembly language’ data ends extra segment string2 db 17 dup(?) extra segment code segment assume cs:code,ds:data,es:extra