Skip to content

Instantly share code, notes, and snippets.

View balos1's full-sized avatar

Cody Balos balos1

View GitHub Profile
#!/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)
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:]):
#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;
}
}
#include <iostream>
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
/**
/*
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