This file contains 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
import com.abranhe.abranhe; | |
class Abranhe { | |
System.out.println("abranhe"); | |
} | |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'publish' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 147881e0f3e6c455 | |
5 verbose publish [ '.' ] | |
6 info lifecycle [email protected]~prepublish: [email protected] | |
7 info lifecycle [email protected]~prepare: [email protected] | |
8 info lifecycle [email protected]~prepublishOnly: [email protected] | |
9 info lifecycle [email protected]~prepack: [email protected] |
This file contains 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
import java.lang.Math; | |
public class Main { | |
public static double inverseSqrt5 = 1 / Math.sqrt(5); | |
public static double phi = (1 + Math.sqrt(5)) / 2; | |
public static int fibonacci(int n) { | |
return (int)Math.floor(Math.pow(phi, n) * inverseSqrt5 + 0.5); | |
} |
This file contains 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
var PageOne = React.createClass({ | |
_handlePress() { | |
this.props.navigator.push({id: 2,}); | |
}, | |
render() { | |
return ( | |
<View style={[styles.container, {backgroundColor: 'green'}]}> | |
</View> | |
) |
This file contains 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
// Run it online | |
// https://repl.it/@abranhe/Pluralsight-1-4-vectors | |
// | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
int main() { |
This file contains 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
// See question: https://hackerrank-challenge-pdfs.s3.amazonaws.com/14507-variable-sized-arrays-English?AWSAccessKeyId=AKIAJ4WZFDFQTZRGO3QA&Expires=1537933597&Signature=hih3xrYn04RUlnsFKRVP1%2BFTgWA%3D&response-content-disposition=inline%3B%20filename%3Dvariable-sized-arrays-English.pdf&response-content-type=application%2Fpdf | |
#include <cmath> | |
#include <cstdio> | |
#include <vector> | |
#include <iostream> | |
#include <algorithm> | |
using namespace std; | |
int main() { |
This file contains 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
// Author: Abraham (@abranhe) | |
// Run it: https://repl.it/@abranhe/AutoExample | |
// C++ 11 or later | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
int main() { | |
vector<int> v = {0,1 ,2 ,3 ,4}; |
This file contains 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
// | |
// Simple Sort | |
// Carlos Abraham He... | |
// github.com/abranhe | |
// https://repl.it/@abranhe/Simple-Sort | |
// | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> |
This file contains 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
// | |
// Reverse an array | |
// Carlos Abraham (abranhe.com) | |
// https://stackoverflow.com/questions/19712903/reverse-contents-in-array | |
// | |
#include <iostream> | |
#include <algorithm> | |
using namespace std; | |
int main() |
This file contains 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
#include <string> | |
#include "account.h" | |
using namespace std; | |
Account::Account(void):balance(0) | |
{ | |
} | |
vector<string> Account::report() | |
{ |
OlderNewer