7dff214d9ba2bd178830d06422073022def49ba3,BinarySeach.py,,,#,25
Before Change
print("Enter numbers seprated by space")
s = input()
numbers = list(map(int, s.split()))
trgt =int( input("enter a single number to be found in the list ") )
binarySearch(numbers, trgt)
After Change
input_function = input
user_input = input_function("Enter numbers separated by coma:\n")
collection = [int(item) for item in user_input.split(",")]
target_input = input_function(
"Enter a single number to be found in the list:\n"
)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances Project Name: TheAlgorithms/Python
Commit Name: 7dff214d9ba2bd178830d06422073022def49ba3
Time: 2016-07-29
Author: me@sergeytsaplin.com
File Name: BinarySeach.py
Class Name:
Method Name:
Project Name: TheAlgorithms/Python
Commit Name: c359768e257a7bcbfe93e137a0fc1e81b92d6573
Time: 2020-12-08
Author: 58473917+Joe-Sin7h@users.noreply.github.com
File Name: sorts/bitonic_sort.py
Class Name:
Method Name:
Project Name: QUANTAXIS/QUANTAXIS
Commit Name: c31e0b1049a52beb74b7b0065e978bb479e89e49
Time: 2017-05-31
Author: yutiansut@qq.com
File Name: test/test_strategy.py
Class Name: backtest
Method Name: handle_data