我有一个列表,我必须在该列表中找到连续的序列。
例如,如果我的列表是[1,2,3,5,7,8,9]
,则代码应返回[1,2,3]
和[7,8,9]
如果列表为[3,5,6,7,8,10]
,则应返回[5,6,7,8]
请给我一些建议,我该如何编码以找到连续的子序列?
答案 0 :(得分:0)
$url = 'https://spreadsheets.google.com/feeds/list/1dpmzzKNR8hRILX6qMD0KTruxxXYT3UAXR0EcX0zS0dE/1/public/full?alt=json';
$file= file_get_contents($url);
$json = json_decode($file);
$rows = $json->{'feed'}->{'entry'};
return $rows;