Skip to content

Latest commit

 

History

History
47 lines (21 loc) · 626 Bytes

File metadata and controls

47 lines (21 loc) · 626 Bytes

中文文档

Description

Given a string containing only digits, restore it by returning all possible valid IP address combinations.

Example:

Input: "25525511135"

Output: ["255.255.11.135", "255.255.111.35"]

Solutions

Python3

Java

...