Skip to content

Instantly share code, notes, and snippets.

View iphyer's full-sized avatar
💭
Always Forward!

Myron iphyer

💭
Always Forward!
View GitHub Profile
@Windsooon
Windsooon / leetcode_retag.md
Last active May 6, 2024 16:02
Retag most popular Leetcode problems

osjobs

海外兔

website

@nadavrot
nadavrot / Matrix.md
Last active May 15, 2024 11:20
Efficient matrix multiplication

High-Performance Matrix Multiplication

This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).

Intro

Matrix multiplication is a mathematical operation that defines the product of

@binjoo
binjoo / Amount2RMB.java
Created July 18, 2013 10:15
JAVA:字符串金额转成中文大写
/*
* Amount2RMB.java 2008-6-15
*/
package test;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Amount2RMB {
private static final Pattern AMOUNT_PATTERN =