Wayne's Talk
  • Android
    • Android
    • Kotlin
  • iOS
    • iOS
    • Swift
  • Spring Boot
    • Spring Boot
    • Spring Security Explained
  • Artificial Intelligence
    • Artificial Intelligence
    • Data Visualization
    • Supervised Learning
    • Neural Networks
    • Vision Models
    • Natural Language Processing
  • Misc.
    • Algorithm
    • LeetCode
    • Software Design
    • Operating System
    • Go
    • Node.js
    • Angular
  • English
    • 中文 (台灣)
    • English
CATEGORIES
  • Algorithm (7)
  • Android (30)
  • Angular (2)
  • Artificial Intelligence (28)
    • Data Visualization (8)
    • Natural Language Processing (11)
    • Neural Networks (2)
    • Supervised Learning (2)
    • Vision Models (5)
  • Go (2)
  • iOS (19)
  • Kotlin (7)
  • LeetCode (17)
  • Misc. (8)
  • Node.js (4)
  • Operating System (6)
  • Software Design (1)
  • Spring Boot (16)
    • Spring Security Explained (6)
  • Swift (9)
TAGS
Android Service (2) Assembly (3) Backtracking (4) Binary Search Tree (1) Breadth First Search (5) Broadcast Receiver (1) C (2) CocoaPods (1) Combine (1) Concurrency (5) Content Provider (2) Core Data (1) Coroutine (4) Depth First Search (4) Dynamic Programming (4) Firebase (2) Java (26) JavaScript (2) JPA (4) Kotlin (41) Matplotlib (8) Monotonic Stack (3) MySQL (2) NPM (3) OAuth 2.0 (1) Pandas (2) Plotly Express (8) Priority Queue (1) Python (30) PyTorch (8) Room (3) SciPy (3) Seaborn (5) Springdoc (3) Spring Security (6) Swift (19) Swift Package (6) Trie (3) TypeScript (4) Union Find (2) Word Embeddings (2) XCFrameworks (4) Xcode (12) YOLO (4)
0
0
0
Wayne's Talk 韋恩愛講話
Follow My GitHub
Get source code of posts.
Follow
Wayne's Talk 韋恩愛講話
  • Android
    • Android
    • Kotlin
  • iOS
    • iOS
    • Swift
  • Spring Boot
    • Spring Boot
    • Spring Security Explained
  • Artificial Intelligence
    • Artificial Intelligence
    • Data Visualization
    • Supervised Learning
    • Neural Networks
    • Vision Models
    • Natural Language Processing
  • Misc.
    • Algorithm
    • LeetCode
    • Software Design
    • Operating System
    • Go
    • Node.js
    • Angular
  • English
    • 中文 (台灣)
    • English
Photo by Olga ga on Unsplash
Read More
  • 390 views
  • 2 minute read
  • LeetCode

638. Shopping Offers

  • ByWayne
  • 16/08/2023
We can use backtracking to find all the purchase combinations, and then take the lowest price.
Read More
0
0
0
0
Photo by Bogdan Farca on Unsplash
Read More
  • 379 views
  • 2 minute read
  • LeetCode

39. Combination Sum

  • ByWayne
  • 16/08/2023
This problem asks us to list all possible combinations, so we can use backtracking to find them. However, we must avoid finding duplicated combinations.
Read More
0
0
0
0
Photo by Calum Lewis on Unsplash
Read More
  • 388 views
  • 1 minute read
  • LeetCode

22. Generate Parentheses

  • ByWayne
  • 16/08/2023
This problem asks us to list all possible combinations of parentheses, so we can use backtracking to solve it.
Read More
0
0
0
0
Photo by MarinelA Pavlovic on Unsplash
Read More
  • 346 views
  • 2 minute read
  • LeetCode

17. Letter Combinations of a Phone Number

  • ByWayne
  • 16/08/2023
This problem asks us to list all possible strings, so we can think of using backtracking to solve it.
Read More
0
0
0
0
Photo by Teresa Jang on Unsplash
Read More
  • 427 views
  • 2 minute read
  • LeetCode

1673. Find the Most Competitive Subsequence

  • ByWayne
  • 15/08/2023
We must first understand what the competitive subsequence in the problem is. When a is more competitive than b, this means that the letters of a are smaller than the letters of b at the same position.
Read More
0
0
0
0
Photo by Daniel Seßler on Unsplash
Read More
  • 437 views
  • 1 minute read
  • LeetCode

503. Next Greater Element II

  • ByWayne
  • 15/08/2023
This problem requires us to find the next greater number of each number in nums. We can use decreasing monotonic stack to solve it.
Read More
0
0
0
0
Photo by Sandro Gonzalez on Unsplash
Read More
  • 341 views
  • 2 minute read
  • LeetCode

211. Design Add and Search Words Data Structure

  • ByWayne
  • 15/08/2023
This problem asks us to build a word dictionary, which is obviously to use Trie. But it also asks to support dots ‘.’ where dots can match any letter.
Read More
0
0
0
0
Photo by Leyre on Unsplash
Read More
  • 323 views
  • 2 minute read
  • LeetCode

208. Implement Trie (Prefix Tree)

  • ByWayne
  • 15/08/2023
This problem is asking us to implement a very basic Trie.
Read More
0
0
0
0
Photo by Brooke Lark on Unsplash
Read More
  • 362 views
  • 2 minute read
  • LeetCode

117. Populating Next Right Pointers in Each Node II

  • ByWayne
  • 15/08/2023
This problem requires us to point the next of the left node in each layer to the right node. Because it is processed layer by layer, it is very intuitive to think of using BFS to solve it.
Read More
0
0
0
0
Photo by Anita Austvika on Unsplash
Read More
  • 323 views
  • 2 minute read
  • LeetCode

116. Populating Next Right Pointers in Each Node

  • ByWayne
  • 15/08/2023
This problem requires us to point the next of the left node in each layer to the right node. Because it is processed layer by layer, it is very intuitive to think of using BFS to solve it.
Read More
0
0
0
0
LANGUAGES
  • 中文 (台灣)
RECENT POSTS
  • Photo by Logan Armstrong on Unsplash 1
    Generative Pre-trained Transformer, GPT
    • 23/04/2025
    • 123 views
  • Photo by Maarten van den Heuvel on Unsplash 2
    Bidirectional Encoder Representations from Transformers, BERT
    • 15/04/2025
    • 144 views
  • Photo by Daryan Shamkhali on Unsplash 3
    Transformer Model
    • 03/04/2025
    • 119 views
  • Photo by Anthony Tran on Unsplash 4
    Attention Models
    • 19/03/2025
    • 148 views
  • Photo by Léonard Cotte on Unsplash 5
    Sequence to Sequence Model (Seq2Seq)
    • 15/03/2025
    • 97 views
MOST VIEWS
  • Photo by Kamile Leo on Unsplash 1
    Spring Security JWT Authentication with Google Sign-In Explained
    • 26/09/2020
    • 14.5K views
  • Photo by Max Langelott on Unsplash 2
    How to Backup and Restore MySQL Databases in Spring Boot
    • 10/09/2020
    • 12.6K views
  • Photo by Heidi Kaden on Unsplash 3
    Sending Push Notifications Using FCM in Spring Boot
    • 18/05/2021
    • 11.3K views
  • 4
    Python Pie/Donut/Sunburst Charts
    • 09/02/2021
    • 10.5K views
  • Photo by Hans-Jurgen Mager on Unsplash 5
    Kotlin Coroutine Flow Tutorial
    • 28/12/2020
    • 9.3K views
Photo by Kamile Leo on Unsplash
Read More
  • 14.5K views
  • 11 minute read
  • Spring Boot
  • Spring Security Explained

Spring Security JWT Authentication with Google Sign-In Explained

  • ByWayne
  • 26/09/2020
Photo by Max Langelott on Unsplash
Read More
  • 12.6K views
  • 2 minute read
  • Spring Boot

How to Backup and Restore MySQL Databases in Spring Boot

  • ByWayne
  • 10/09/2020
Photo by Heidi Kaden on Unsplash
Read More
  • 11.3K views
  • 3 minute read
  • Spring Boot

Sending Push Notifications Using FCM in Spring Boot

  • ByWayne
  • 18/05/2021
Read More
  • 10.5K views
  • 5 minute read
  • Data Visualization

Python Pie/Donut/Sunburst Charts

  • ByWayne
  • 09/02/2021
Subscribe to My Newsletter
Wayne's Talk
  • About Me
  • Contact Me
  • Terms of Use
  • Disclaimer
  • Privacy Policy
0
0
0
0
© 2020 - 2025 Wayne's Talk. All Rights Reserved.