Skip to content

Instantly share code, notes, and snippets.

View Seolhun's full-sized avatar
:octocat:

Hun, Seol(Sol) Seolhun

:octocat:
  • Korea, Seoul Gangnam
View GitHub Profile
@Seolhun
Seolhun / logging.json
Last active August 18, 2017 06:44
Python Logging.json
{
"version": 1,
"formatters": {
"simple": {
"format": "%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
package com.algorithm.samsung.progress.SupplyRoute;
/**
* @author HunSeol
* @see https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15QRX6APsCFAYD
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
@Seolhun
Seolhun / ReverseInt.java
Created May 10, 2018 07:27
java, reverse int without array
/**
* @author HunSeol
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ReverseInt {
static int T;