HackerTrans
トップ新着トレンドコメント過去質問紹介求人

rainhacker

no profile record

投稿

H1B Crackdown on Indian Workers Erodes Texas Real Estate Boom

bloomberg.com
8 ポイント·投稿者 rainhacker·先月·3 コメント

[untitled]

1 ポイント·投稿者 rainhacker·先月·0 コメント

What are some unforeseen / elusive edge cases you have seen in your career?

reddit.com
2 ポイント·投稿者 rainhacker·3 か月前·0 コメント

Amazon could take at least a day to restore data centers hit by 'objects'

businessinsider.com
2 ポイント·投稿者 rainhacker·4 か月前·0 コメント

Palantir and Anthropic AI helped the US hit 1k Iran targets in 24 hours

moneycontrol.com
111 ポイント·投稿者 rainhacker·4 か月前·86 コメント

Worming out molecular secrets behind collective behaviour

iisc.ac.in
13 ポイント·投稿者 rainhacker·4 か月前·0 コメント

13-hour AWS outage reportedly caused by Amazon's own AI tools

engadget.com
3 ポイント·投稿者 rainhacker·5 か月前·1 コメント

Google Skills

skills.google
1 ポイント·投稿者 rainhacker·8 か月前·0 コメント

[untitled]

1 ポイント·投稿者 rainhacker·8 か月前·0 コメント

Amazon is planning a new wave of layoffs, sources say

fortune.com
9 ポイント·投稿者 rainhacker·9 か月前·0 コメント

Orders for Pahalgam satellite images from US firm peaked 2 months before attack

theprint.in
1 ポイント·投稿者 rainhacker·昨年·0 コメント

London's Heathrow Airport Shut Friday Due to Power Outage

bloomberg.com
7 ポイント·投稿者 rainhacker·昨年·1 コメント

DiceDB

dicedb.io
235 ポイント·投稿者 rainhacker·昨年·132 コメント

Uber Auto is now on SaaS – What does that mean for riders?

uber.com
1 ポイント·投稿者 rainhacker·昨年·0 コメント

Microsoft confirms performance-based job cuts across departments

cnbc.com
8 ポイント·投稿者 rainhacker·2 年前·2 コメント

We're All in 'Dark Mode' Now

theatlantic.com
17 ポイント·投稿者 rainhacker·2 年前·8 コメント

A fatal car crash in India sparks concerns over Google Maps

bbc.com
3 ポイント·投稿者 rainhacker·2 年前·3 コメント

Secrets of Corporate HR Department

old.reddit.com
27 ポイント·投稿者 rainhacker·2 年前·2 コメント

Amazon CEO: AI Assistant Has Saved $260M and 4.5K Developer-Years of Work

finance.yahoo.com
2 ポイント·投稿者 rainhacker·2 年前·0 コメント

In a leaked recording, AWS CEO tells most developers could stop coding soon

businessinsider.com
56 ポイント·投稿者 rainhacker·2 年前·60 コメント

コメント

rainhacker
·7 年前·議論
I like 'Better Explained'[1]. It specifically focuses on intuitive understanding of mathematics.

A post I like is on adding numbers 1 to 100 [2]. The staple formula is n(n+1)/2, sum of arithmetic progression. How can we intuitively arrive that this formula?

> Technique 1: Pair Numbers Pairing numbers is a common approach to this problem. Instead of writing all the numbers in a single column, let’s wrap the numbers around, like this:

1 2 3 4 5

10 9 8 7 6

An interesting pattern emerges: the sum of each column is 11. As the top row increases, the bottom row decreases, so the sum stays the same.

Because 1 is paired with 10 (our n), we can say that each column has (n+1). And how many pairs do we have? Well, we have 2 equal rows, we must have n/2 pairs.

Number of Paris x Sum of Each Pair = (n/2) (n + 1) = n(n+1) / 2


[1] https://betterexplained.com/

[2] https://betterexplained.com/articles/techniques-for-adding-t...