The hottest Strings Substack posts right now

And their main takeaways
Category
Top Education Topics
Technology Made Simple β€’ 19 implied HN points β€’ 03 Nov 22
  1. The post discusses finding all occurrences of a substring in a given string, emphasizing the need to identify starting indices.
  2. Devansh, the author, shares a personalized message and requests feedback from the readers by asking about their university experiences.
  3. Subscribers are encouraged to participate in a survey, fill out forms to support the newsletter, and explore additional content on different platforms of the author.
Get a weekly roundup of the best Substack posts, by hacker news affinity:
Technology Made Simple β€’ 39 implied HN points β€’ 10 Feb 22
  1. A valid sentence must start with a capital letter followed by a lowercase letter or a space, with specific rules for other characters and spacing.
  2. When tackling a problem, take time to understand nuances like handling input as a stream, which impacts the approach to the solution.
  3. Identify the methodology needed for a problem by recognizing patterns such as tracking the state of input to determine the rules to apply, making problem-solving more manageable.
Technology Made Simple β€’ 19 implied HN points β€’ 12 May 22
  1. Next week's topic will introduce the concept of a Recursive Leap of Faith to help with backtracking, dynamic programming, and recursion.
  2. You can test your coding skills with a popular interview question: Leetcode 79. Word Search.
  3. Ensure your code passes Leetcode submissions even if it doesn't match top speeds, and focus on understanding the problem and providing a correct solution.
Judson’s Substack β€’ 5 implied HN points β€’ 20 Jun 23
  1. In C, 'string' doesn't exist on its own, but is represented by 'char *' in the cs50.h library.
  2. Using pointers and pointer arithmetic in C helps in accessing and iterating through addresses in memory.
  3. When comparing strings in C, remember to use 'strcmp' instead of '==' to check if the contents are the same.