Best Python code snippet using hypothesis
chart_config.py
Source:chart_config.py  
...40        self.can_sort = can_sort41        self.can_search = can_search42        self.page_size = page_size43    @property44    def can_sort(self):45        """Gets the can_sort of this ChartConfig.46        æ¯å¦å¼å¯æåº47        :return: The can_sort of this ChartConfig.48        :rtype: bool49        """50        return self._can_sort51    @can_sort.setter52    def can_sort(self, can_sort):53        """Sets the can_sort of this ChartConfig.54        æ¯å¦å¼å¯æåº55        :param can_sort: The can_sort of this ChartConfig.56        :type can_sort: bool57        """58        self._can_sort = can_sort59    @property60    def can_search(self):61        """Gets the can_search of this ChartConfig.62        æ¯å¦å¼å¯æç´¢63        :return: The can_search of this ChartConfig.64        :rtype: bool65        """66        return self._can_search...pbRoot.py
Source:pbRoot.py  
1# Copyright (c) 2016, Samantha Marshall (http://pewpewthespells.com)2# All rights reserved.3#4# https://github.com/samdmarshall/pbPlist5#6# Redistribution and use in source and binary forms, with or without modification,7# are permitted provided that the following conditions are met:8#9# 1. Redistributions of source code must retain the above copyright notice, this10# list of conditions and the following disclaimer.11#12# 2. Redistributions in binary form must reproduce the above copyright notice,13# this list of conditions and the following disclaimer in the documentation and/or14# other materials provided with the distribution.15#16# 3. Neither the name of Samantha Marshall nor the names of its contributors may17# be used to endorse or promote products derived from this software without18# specific prior written permission.19#20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"21# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED22# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.23# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,24# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,25# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF27# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR28# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED29# OF THE POSSIBILITY OF SUCH DAMAGE.30from functools import cmp_to_key31import collections32from .         import pbItem33def StringCmp(obj1, obj2):34    result = -135    if obj1 > obj2:36        result = 137    elif obj1 == obj2:38        result = 039    return result40def KeySorter(obj1, obj2):41    result = 042    if str(obj1) == 'isa':43        result = -144    elif str(obj2) == 'isa':45        result = 146    else:47        result = StringCmp(str(obj1), str(obj2))48    return result49class pbRoot(collections.MutableMapping):50    def __init__(self, *args, **kwargs):51        self.store = dict()52        self.key_storage = list()53        self.update(dict(*args, **kwargs))  # use the free update to set keys54    def __internalKeyCheck(self, key): # pylint: disable=no-self-use55        safe_key = key56        if isinstance(safe_key, str):57            safe_key = pbItem.pbItemResolver(safe_key, 'qstring')58        return safe_key59    def __getitem__(self, key):60        return self.store[key]61    def __setitem__(self, key, value):62        if key not in self.key_storage:63            self.key_storage.append(self.__internalKeyCheck(key))64        self.store[key] = value65    def __delitem__(self, key):66        if key in self.key_storage:67            self.key_storage.remove(key)68        del self.store[key]69    def __iter__(self):70        return self.key_storage.__iter__()71    def __len__(self):72        return self.key_storage.__len__()73    def __str__(self):74        return self.store.__str__()75    def __contains__(self, item):76        return item in self.key_storage77    def __getattr__(self, attrib):78        return getattr(self.store, attrib)79    def __keytransform__(self, key): # pylint: disable=no-self-use80        result = key81        if isinstance(key, pbItem.pbItem):82            result = key.value83        return result84    def sortedKeys(self):85        unsorted_keys = self.key_storage86        sorted_keys = sorted(unsorted_keys, key=cmp_to_key(KeySorter))87        can_sort = False88        if len(sorted_keys) > 0:89            all_dictionaries = all((isinstance(self[key].value, dict) or isinstance(self[key].value, pbRoot)) for key in unsorted_keys)90            if all_dictionaries:91                can_sort = all(self[key].get('isa', None) is not None for key in unsorted_keys)92                if can_sort:93                    sorted_keys = sorted(unsorted_keys, key=lambda k: str(self[k]['isa']))...SHUFFLE CodeChef April Lunchtime 20.py
Source:SHUFFLE CodeChef April Lunchtime 20.py  
1#Reference2#https://www.youtube.com/watch?v=M5FWpJTqC403#https://www.codechef.com/problems/SHUFFLE4from collections import defaultdict5import math6t=int(input())7while t!=0:8    t-=1 9    n,k=[int(x) for x in input().split()]10    a=[int(x) for x in input().split()]11    split_lists=defaultdict(list)12    for i in range(n):13        mod_i=i%k 14        split_lists[mod_i].append(a[i])15    16    new_list=[]17    #sort each list18    for i in range(k):19        split_lists[i]=sorted(split_lists[i])20        21    #Merge together!22    limit=math.ceil(n/k)23    for i in range(limit):24        for j in range(k):25            if(i<len(split_lists[j])):26                new_list.append(split_lists[j][i])27    28    can_sort=True29    #print(new_list)30    #If new_list is not sorted, original list cannot be sorted31    32    for i in range(1,len(new_list)):33        if(new_list[i-1]>new_list[i]):34            can_sort=False35            break36    if(can_sort):37        print("yes")38    else:...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
