Skip to content

Instantly share code, notes, and snippets.

View indrajeet95's full-sized avatar
🎯
Focusing

Indrajeet Saravanan indrajeet95

🎯
Focusing
View GitHub Profile
package main
import ("fmt")
//Using bitwise and for speed
func Evensumfib(lt int) int {
sum := 0
for i, j := 1, 1; j < lt; i, j = i+j, i {
if i&1 == 0 {
sum += i