# medium

[Leetcode] 763. Partition Labels
You are given a string s. We want to partition the string into as many parts as possible so that each letter appears in at most one part.Note that the

[LeetCode] #142: Linked List Cycle II
Given the head of a linked list, return the node where the cycle begins. If there is no cycle, return null.

[LeetCode] #743: Network Delay Time
Return the time it takes for all the n nodes to receive the signal. If it is impossible for all the n nodes to receive the signal, return -1.

[LeetCode] #103: Binary Tree Zigzag Level Order Traversal
Given the root of a binary tree, return the zigzag level order traversal of its nodes' values.

62. Unique Paths
MxN 격자에 로봇이 있다. 이 로봇은 가장 왼쪽 위(grid0)에 위치해 있다. 로봇은 가장 오른쪽 아래(gridm-1)로 가려고 한다. 한번에 아래 또는 오른쪽으로만 움직일 수 있다. m,n이 주어질 때, 로봇이 도달할 수 있는 가능한 경로의 가짓수를 출력하시오.

[LeetCode] #102: Binary Tree Level Order Traversal
Given the root of a binary tree, return the level order traversal of its nodes' values. (i.e., from left to right, level by level).

6. Zigzag Conversion
"PAYPALISHIIRING" 문자열을 지그재그 패턴으로 쓴다면 다음과 같다. 한 줄씩 읽으면 "PAHNAPLSIIGYIR"이 된다. 문자열과 row 값이 주어지면 이를 지그재그 패턴으로 쓴 뒤의 문자열을 출력하시오.

3. Longest Substring Without Repeating Characters
안녕 오랜만에 돌아온 리트코드~문자열 s가 주어졌을 때, 반복되는 문자가 없는 가장 긴 substring의 길이를 출력하시오 .