Jonghan's learning path

Today I Learned as a developer

Recent posts

Python - Variable

less than 1 minute read

Python is dynamically typed, which means I don’t need to explicitly declare the data type of a variable. Python will infer the data type based on the assigne...

Leetcode problem 44 - Search Insert Position

1 minute read

Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were ...

Leetcode problem 43 - Jump Game

2 minute read

You are given an integer array nums. You are initially positioned at the array’s first index, and each element in the array represents your maximum jump leng...