leetcode day 19 - 884438713209

Day 19 884 unusual words in two sentences A sentence is a string of words separated by spaces. Each word consists of only lowercase letters. If a word happens to appear once in one sentence but does not appear in the other sentence, the word is not common. Give you two sentences s1 and s2 and return a list of all the infrequently used words ...

Added by mahakmx on Tue, 01 Feb 2022 13:01:53 +0200

[learning notes] Introduction to the basics of C language - this one is enough!

This article is a summary of the author's notes in the process of learning C language. It will briefly describe the basic knowledge of C language. The content is clear and easy to understand. I believe you can easily learn the basic knowledge of C language. At the same time, I hope this article will help you. I believe you will succeed. Now let ...

Added by alevsky on Tue, 01 Feb 2022 09:59:36 +0200

An inside volume note about TypeScript

Author: Attention 🐴 Github: Github Nuggets: Go in and have a look 🐴 Hobbies: Americano More Ice! An inside volume note about Typescript Typescript brief introductioninstallWrite the first demoBasics Raw data type Boolean valuenumerical valuecharacter stringNull value Arbitrary valuetype inference Union typeObject type - In ...

Added by planethax on Tue, 01 Feb 2022 09:39:52 +0200

Introduction to C language (freshman notes) function

Chapter 7 C language functions 7.1 what is a function? concept We encapsulate (package) the commonly used code into an independent module in a fixed format. As long as we know the name of this module, we can reuse it. This module is called Function. Explain the encapsulation of the function and some precautions with the function of comp ...

Added by mullz on Tue, 01 Feb 2022 07:32:28 +0200

Design and implementation of online examination system

1. Design background Recently, some users have put forward the need to implement a set of video learning module and online examination module in the original website. Here, I will first introduce the design idea of the following online examination module. To realize an online examination system with basic functions, the following elements are ...

Added by godwisam on Tue, 01 Feb 2022 03:30:42 +0200

Detailed knowledge of Python iterations, iterators and generators

Have you distinguished Iterable, iterator and generator? What are they, what is the relationship between them, what are their uses and how to create them? This article explains in detail one by one Iteratable Any object that can be iterated is iterable. In short, the objects that can be used in for loop are, for example: All sequence types a ...

Added by kelvin on Tue, 01 Feb 2022 02:06:34 +0200

Brother Jiang takes you to play with C language | 13 - one level pointer and multi-level pointer

Basic concepts of pointer What is the address Address in life: Memory address: Address and data in memory unit are two completely different concepts The address is like the room number. According to this number, we can find the corresponding roomMemory units are like rooms, which are dedicated to storing data Variable address: The ...

Added by fhil85 on Mon, 31 Jan 2022 23:26:51 +0200

Python crawls to take pictures of beautiful women and sees unexpected scenes

Recently, I used Python and wrote several crawlers to practice. There are many online tutorials, but some can't climb. The main reason is that the website is often changed, but crawlers still have a common idea, that is, downloading data, parsing data and saving data. Let's talk about it. 1. Download data First, open the website to be craw ...

Added by cbn_noodles on Mon, 31 Jan 2022 23:22:03 +0200

Design pattern learning notes -- overview, creative pattern

Design mode summary significance The essence of design pattern is the practical application of object-oriented design principles. It is a full understanding of the encapsulation, inheritance and polymorphism of classes, as well as the association and composition of classes Basic elements name Question: the application environment of th ...

Added by gowni on Mon, 31 Jan 2022 22:10:52 +0200

Read the Java String of the source code carefully (I)

Close reading of the source code is the column of appreciating the source code under the horse soldier education. The purpose of our appreciation of the source code is not to show off our skills, but to understand the author's design ideas and extract the essence, so as to write more excellent code. On the other hand, you can also give extra po ...

Added by mashamit on Mon, 31 Jan 2022 18:30:11 +0200