A weekly algorithmic problem: change change change

Questions: Known convertible change types are 1 yuan, 5 yuan, 10 yuan, 20 yuan 4 kinds, now there are 100 yuan to change into change and the total amount is less than 15 pieces, how many kinds of exchange? What are the differences? Ideas: Known as a n optional data set S, such as [1, 5, 10, 20], we now need to extract n numbers from it, the te ...

Posted by jdc44 on Thu, 08 Aug 2019 14:10:37 +0200

Python 3 Network Crawler Actual Warfare-44, Identification of Verification Code for Point Contact Selection

In the last section, we realized the recognition of the test verification code, but there is another common and widely used test code besides the test. The more representative one is the touch verification code. Maybe you are unfamiliar with the name, but you must have seen similar authentication codes, such as 12306, which is a typical touch ...

Posted by jskywalker on Wed, 07 Aug 2019 17:25:36 +0200

django logon authentication for 8 users from scratch to be tested

Look at the document djang with a user login verification method, but some look at the foolish, go to the Internet to find a circle, found that many are copying the document description, hardly say what the principle is.   In particular, from django.contrib.auth import authenticate It's said that this is the way, but it seems that the d ...

Posted by vwinstead on Wed, 07 Aug 2019 11:06:26 +0200

React Learning Notebook Conditions Rendering and List Rendering

I. Conditional Rendering 1. Conditional Rendering In React, we can encapsulate different behaviors by creating different components, and then render parts of the corresponding state according to the state of the application. // Define component encapsulation login behavior class SignIn extends React.Component { constructor(props) { ...

Posted by jesse24 on Wed, 07 Aug 2019 06:51:59 +0200

July 22, 2019 (Data Structure and Search)

The test was fried!!!!! What a ghost, xie. I'm afraid the noip will explode this year. I haven't finished the exam yet. Let's make a summary. I really don't want to say anything in the exam today... Write your questions carefully... Arrange the questions according to their difficulty level first. Only problem2 is written in the exam. If there i ...

Posted by cbassett03 on Wed, 07 Aug 2019 02:41:01 +0200

Qt5 Tutorial: Hello World Program

1. New Construction Select New Project - > Application - > Qt Widgets Application - > Choose in the Welcom interface Enter the project name Name, and select the project storage path, click Next. The next page continues to click Next (as the default project path, you decide not to check). Select Base class as Qwidget, enter Class name ...

Posted by thehippy on Tue, 06 Aug 2019 13:59:26 +0200

Conversion of xml, dictionary, json and class data in Python

Reproduced from https://www.cnblogs.com/dafa638/p/9952790.html   sax, or dom and other libraries were used to parse xml files for Python data types and then to operate. It is more cumbersome. It is found that this post provides a more concise method for the conversion of these data types. Several conversion methods are also more comprehensive ...

Posted by Drezek on Tue, 06 Aug 2019 09:41:02 +0200

How does Baishi Express Free Docking Express Bird Single Number Query api Interface

The API interface of express inquiry is to use logistics number to query logistics information. Mainly used in e-commerce malls, ERP systems, WMS systems, express cabinets, banks and other enterprises. Several express logistics companies have unified interface access. It is suggested that docking interface providers can access multiple express ...

Posted by revjoe on Tue, 06 Aug 2019 08:10:34 +0200

[Introduction to PyQt] The basic PyQt5 controls use: message pop-up, user input, file dialog boxes

This paper mainly introduces the message pop-up dialog box commonly used in PyQt interface implementation, the input box that provides user input, and the file dialog box that opens file to get file/directory path.Before learning about these three controls, think about the main scenarios they use: 1. Message pop-up dialog box.Programs that enc ...

Posted by Wolf_22 on Tue, 06 Aug 2019 01:43:26 +0200

TensorFlow Practical Warfare Lesson 7 (dropout Solving overfitting)

Dropout Solves overfitting   overfitting is also known as over-learning and over-fitting. He is a common problem in machine learning.     The black curve is the normal model, and the green curve is the overfitting model. Although the green curve accurately distinguishes all the training data, it does not describe the overall characterist ...

Posted by ev5unleash on Mon, 05 Aug 2019 12:42:05 +0200