This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| What we are talking about is the decomposition of | |
| the direct product of two irreducible representations of | |
| the rotation group into a direct sum of irreducible representations. | |
| - Griffiths' "Introduction to Quantum Mechanics" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int change(int target, int [] coins) { | |
| if(target <= 0) { | |
| return 0; | |
| } | |
| for(int i=0; i<coins.length; i++) { | |
| if(target == coins[i]) return 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rasmus Ledorf is a self-confessed dilettante in language design. | |
| - Andrei Alexandrescu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static double sqrt(double n, double low, double high, double e) { | |
| double guess = (low+high)/2; | |
| if(Math.abs(guess*guess - n) < e) { | |
| return guess; | |
| } | |
| else if(guess*guess > n) { | |
| return sqrt(n, low, guess, e); | |
| } | |
| else { | |
| return sqrt(n, guess, high, e); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| People will forget what you said, people will forget what you did, | |
| but people will never forget how you made them feel. | |
| - Maya Angelou |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The silence was deafening. | |
| - Multiple sources |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| What was once a means of creative expression and a connection to a living community has ossified: | |
| a hidden record of who you aspired to be, as you became who you are now instead. | |
| - Eric Bellm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| No man ever steps in the same river twice, for it's not the same river and he's not the same man. | |
| - Heraclitus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for k=1:size(cmat,2), | |
| cmat(:,k)=toggleToZero(cmat(:,k)', 0.2)'; | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The hipster is a scholar of social forms, a student of cool. | |
| - Christy Wampole |