Skip to content

Instantly share code, notes, and snippets.

View ychoi-kr's full-sized avatar
😀

Yong Choi ychoi-kr

😀
View GitHub Profile
@ychoi-kr
ychoi-kr / gist:cf61a7da0ae064439f5fa9bbb00773ce
Last active May 19, 2021 04:10
simple type inference with try-except in python
>>> def triple_input_number():
... x = input()
... try:
... n = int(x)
... return n * 3
... except:
... pass
...
>>> triple_input_number()
3
@ychoi-kr
ychoi-kr / clock.c
Last active May 19, 2021 04:21
time conversion for digital clock
#include <stdio.h>
#include <stdbool.h>
int main() {
//bool hours12 = false;
bool hours12 = true;
int hour, minute;
scanf("%d%d", &hour, &minute);
int currentTime = hour * 100 + minute;