python 缩短搜索Algorithm.py

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 缩短搜索Algorithm.py相关的知识,希望对你有一定的参考价值。

def Shortening_search(target):
	assert 0<target<1000 #must be between 1 and 999.
	list, count = range(1000), 0
	while len(list) > 1:
		if list[0] == target:
			return count
		elif list[-1] == target:
			return count
		else:
			list.pop()
			list.remove(list[0])
			count += 1
	return count

以上是关于python 缩短搜索Algorithm.py的主要内容,如果未能解决你的问题,请参考以下文章

利用Python缩短URL链接

使用 Elastic 8.5 版构建强大的搜索体验,缩短实现可观测性的时间,并简化安全工作流

使用 Elastic 8.5 版构建强大的搜索体验,缩短实现可观测性的时间,并简化安全工作流

如何使用 python 取消缩短 URL?

python 缩短文字

python 缩短python中的长字符串,这样东西就不会泛滥