I hereby claim:
- I am cojomojo on github.
- I am cojomojo (https://keybase.io/cojomojo) on keybase.
- I have a public key ASBqujW0BwmCbhK4KbJqvLkybXQ8NAPOJxkOFHg9tH1eJAo
To claim this, I am signing this object:
/* | |
BSD 3-Clause License | |
Copyright (c) 2002-2021, Lawrence Livermore National Security and Southern Methodist University. | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
* Redistributions of source code must retain the above copyright notice, this |
#include <iostream> | |
struct ListNode { | |
int val; | |
ListNode *next; | |
ListNode(int x) : val(x), next(NULL) {} | |
}; | |
/** |
#include "stdio.h" | |
int hammingDistance(int x, int y) { | |
int diff = x^y; | |
int distance = 0; | |
for (int i = 0; i < 32; ++i) { | |
if ((diff & (1 << i)) != 0) { | |
++distance; | |
} | |
} |
class Solution: | |
def twoSum(self, nums, target): | |
""" | |
:type nums: List[int] | |
:type target: int | |
:rtype: List[int] | |
""" | |
(num, idx) = (nums[0], 0) | |
dct = dict([(num, idx)]) | |
for idx2, num2 in enumerate(nums[1:]): |
#!/bin/bash | |
# console colors | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
NC='\033[0m' | |
# project name comes top folder name by default | |
PROJECT=$(basename $PWD) |
# Created by https://www.gitignore.io/api/latex | |
### LaTeX ### | |
## Core latex/pdflatex auxiliary files: | |
*.aux | |
*.lof | |
*.log | |
*.lot | |
*.fls |
#!/bin/zsh | |
rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} / /media/cody/Backup/cbalos-nixtop |
/* | |
File: timing.h | |
Author(s): | |
Cody Balos | |
Description: | |
Useful stuff for timing programs. | |
MIT License | |
Copyright (c) [2017] [Cody Balos] |
I hereby claim:
To claim this, I am signing this object:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% University/School Laboratory Report | |
% LaTeX Template | |
% Version 3.1 (25/3/14) | |
% | |
% This template has been downloaded from: | |
% http://www.LaTeXTemplates.com | |
% | |
% Original author: | |
% Linux and Unix Users Group at Virginia Tech Wiki |