Skip to content

Instantly share code, notes, and snippets.

View hwj0623's full-sized avatar
🎯
Focusing

hwj0623 hwj0623

🎯
Focusing
  • Seoul
View GitHub Profile
@hwj0623
hwj0623 / main.swift
Last active April 5, 2019 08:27
Step 2-4~7 및 추가학습 중 4번 반영
// main.swift
// UnitConverter
//
import Foundation
/// 소숫점 n자리에서 반올림 extension
extension Double {
func rounded(toPlace places: Int)-> Double {
let divisor = pow(10.0, Double(places))
return (self * divisor).rounded()/divisor
@hwj0623
hwj0623 / main.swift
Last active April 3, 2019 09:42
04/02 pair programming of UnitConverter
// main.swift
// UnitConverter
//
// Created by Doran & Dominic on 02/04/2019.
// Copyright © 2019 hw. All rights reserved.
import Foundation
// 소숫점 n자리에서 반올림 extension