Hey! I’m
Soomyung

Developer, a former mechanical engineer. This blog is all about my studies & tech stuff.
Gooner and supporting LG Twins & Brooklyn Nets. Only pleasure thesedays is Nets game tho...- the Best Samgyeobsal Griller, Gorgeous instant Ramen chef

Favorite Tags
Latest Stories

Start with Vue 2 + Vuex 3 + Typescript Simple Boilerplate

Introduction If you read this post, you may have already heard that is not for , but for is. However, is almost 90% of the framework in the world. Furthermore, even today, and are still dominating the web, and it is like a moon to the users who migrate to or from the legacy framework. Even…

Read More

Simple Guidance for Git in Visual Studio Code

Introduction is the most popular IDE for all the frontend developer; for backend, some one says yes, though but not dominating like frontend pool. Therefore, you easily get the a lot of how to setting for . In this post, introduce the most essential setup for . 1. open by from CMD Open , then…

Read More

Refactor your code with axios.interceptors()

Introduction When you request the data from the server, we use the default . However, after the powerful ajax method emerged with Angular, there is enormous demand for like Ajax library for a non-angular framework. So, it is : the reason why people use it. In this post, I introduce the way I use…

Read More

Factorial

Problem Enter a natural number N to get the value of N!. N! = n(n-1)(n-2)…2*1. If N=5 then 5!=54321=120. input In the first line, the natural number N (3<=n<=10) is entered. output Print the N factorial value on the first line. Solution plus subtract

Read More

Number of Combinations (Memoization)

Problem The equation above is solution for number of combinations. But instead of using this formula, write a program that uses the following equation to find the combinatorial number using recursion. input The first line contains the natural numbers n (3<=n<=33) and r (0<=r<=n). output Prints the…

Read More
Page 1 Of 26