Skip to content

Instantly share code, notes, and snippets.

View HARlBO's full-sized avatar
🚀

Jinha HARlBO

🚀
View GitHub Profile
@HARlBO
HARlBO / I'm a night 🦉
Last active December 30, 2020 01:03
I'm a night 🦉
🌞 Morning 79 commits █▉░░░░░░░░░░░░░░░░░░░ 9.3%
🌆 Daytime 174 commits ████▎░░░░░░░░░░░░░░░░ 20.4%
🌃 Evening 332 commits ████████▏░░░░░░░░░░░░ 38.9%
🌙 Night 268 commits ██████▌░░░░░░░░░░░░░░ 31.4%
@HARlBO
HARlBO / fibonacci.swift
Created July 17, 2018 14:48
for문, 재귀를 이용한 피보나치 수 구하기
func fibonacci(_ n: Int) -> Int {
var preValue = 0
var nextValue = 1
for _ in 0 ..< n {
let resultValue = preValue + nextValue
preValue = nextValue
nextValue = resultValue
}